Open chuckn0rris opened 2 months ago
Forum post
After calling this code, project.changes will contain new value of calendar
project.changes
this.project.applyChangeset({ resources: { modified: [{ id: 2, name: 'newVal', calendar: 'newVal', }] } });
But if we call this code, project.changes will stay empty
this.project.applyChangeset({ resources: { modified: [{ id: 2, name: 'newVal' }] } });
Forum post
After calling this code,
project.changes
will contain new value of calendarBut if we call this code,
project.changes
will stay empty