Merge branch 'RED-8075' into 'master'

RED-8075: fixed conflicting pop-up messages.

See merge request redactmanager/red-ui!232
This commit is contained in:
Dan Percic 2023-12-15 10:06:41 +01:00
commit 79482b4da2
2 changed files with 5 additions and 1 deletions

View File

@ -61,7 +61,10 @@ export class EditDossierDictionaryComponent implements OnInit {
false,
this.activeEntryType,
);
} catch (error) {
return { success: false };
}
try {
await this.#updateDossierDictionary();
return { success: true };
} catch (error) {

View File

@ -125,6 +125,7 @@ export class DictionaryService extends EntitiesService<IDictionary, Dictionary>
} else {
this._toaster.error(_('dictionary-overview.error.generic'));
}
throw error;
}
}