Browse Source

1.0.1:

Unterschrift Präsident
Bugfix Client: addTimeslots
Bugfix Server: rename Team
tags/v1.0.1
akimmig 3 years ago
parent
commit
98b005b16e
5 changed files with 5 additions and 5 deletions
  1. +1
    -1
      client/package.json
  2. +1
    -1
      client/src/urkunde.js
  3. +1
    -1
      client/src/views/components/event/event.vue
  4. +1
    -1
      server/package.json
  5. +1
    -1
      server/src/event/resolver/event.mutation.ts

+ 1
- 1
client/package.json View File

{ {
"name": "schoolINmotion-client", "name": "schoolINmotion-client",
"version": "1.0.0",
"version": "1.0.1",
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",

+ 1
- 1
client/src/urkunde.js
File diff suppressed because it is too large
View File


+ 1
- 1
client/src/views/components/event/event.vue View File

neu.push(t) neu.push(t)
} }


return neu.filter(n => !this.timeslots.find(o => o.time === n && o.duration === parseInt(this.ts.dialog.duration))).map(t => ({ time: t, duration: this.ts.dialog.duration }))
return neu.filter(n => !this.timeslots.find(o => o.time === n && o.duration === parseInt(this.ts.dialog.duration))).map(t => ({ time: t, duration: parseInt(this.ts.dialog.duration) }))
}, },
bonus () { bonus () {
return this.apparatus.reduce((acc, curr) => { return this.apparatus.reduce((acc, curr) => {

+ 1
- 1
server/package.json View File

{ {
"name": "schoolINmotion-server", "name": "schoolINmotion-server",
"version": "1.0.0",
"version": "1.0.1",
"description": "", "description": "",
"author": "", "author": "",
"private": true, "private": true,

+ 1
- 1
server/src/event/resolver/event.mutation.ts View File

neu = await this.service.update( neu = await this.service.update(
client, client,
tmp._id, tmp._id,
{ $set: { 'timeslots.$[ts].team,name': name }},
{ $set: { 'timeslots.$[ts].team.name': name }},
{ arrayFilters: [{ 'ts._id': timeslot }]} { arrayFilters: [{ 'ts._id': timeslot }]}
); );
} else { } else {

Loading…
Cancel
Save