Skip to content

Commit

Permalink
fix: restore toast feature on Loader
Browse files Browse the repository at this point in the history
  • Loading branch information
lme-axelor committed Feb 23, 2024
1 parent e6322b1 commit d42772a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ class ProcessProvider {
}

notifyMe(p: ProcessItem) {
this._processMap.set(p.key, {...p, notifyMe: true});
p.notifyMe = true;
this._processMap.set(p.key, p);
}

async runProcess(p: ProcessItem, I18n: TranslatorProps) {
Expand Down

0 comments on commit d42772a

Please sign in to comment.