Skip to content

Commit a7676e0

Browse files
authored
Merge pull request #8686 from jrjohnson/fix-lg-saving
Fix Saving Groups UI
2 parents 16f6246 + d0ddd88 commit a7676e0

File tree

1 file changed

+2
-2
lines changed
  • packages/frontend/app/components/learner-group

1 file changed

+2
-2
lines changed

packages/frontend/app/components/learner-group/root.gjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export default class LearnerGroupRootComponent extends Component {
235235
async generateNewLearnerGroups(num) {
236236
this.savedGroup = null;
237237
this.currentGroupsSaved = 0;
238-
this.isSaving = true;
238+
this.isSavingGroups = true;
239239
this.totalGroupsToSave = num;
240240
const offset = await this.args.learnerGroup.getSubgroupNumberingOffset();
241241
const cohort = await this.args.learnerGroup.cohort;
@@ -258,7 +258,7 @@ export default class LearnerGroupRootComponent extends Component {
258258
this.currentGroupsSaved = this.currentGroupsSaved + chunk.length;
259259
await saveSomeGroups(groupsToSave);
260260
} else {
261-
this.isSaving = false;
261+
this.isSavingGroups = false;
262262
this.flashMessages.success('general.savedSuccessfully', {
263263
capitalize: true,
264264
});

0 commit comments

Comments
 (0)