wacom 20.5.0 → 20.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1273,11 +1273,11 @@ class CrudComponent {
1273
1273
  /** Requests confirmation before deleting the provided document. */
1274
1274
  delete(doc) {
1275
1275
  this.__alert.question({
1276
- text: this.translateService.translate(`Common.Are you sure you want to delete this${this._module ? ' ' + this._module : ''}?`),
1276
+ text: this.translateService.translate(`Common.Are you sure you want to delete this${this._module ? ' ' + this._module : ''}?`)(),
1277
1277
  buttons: [
1278
- { text: this.translateService.translate('Common.No') },
1278
+ { text: this.translateService.translate('Common.No')() },
1279
1279
  {
1280
- text: this.translateService.translate('Common.Yes'),
1280
+ text: this.translateService.translate('Common.Yes')(),
1281
1281
  callback: async () => {
1282
1282
  await firstValueFrom(this.crudService.delete(doc));
1283
1283
  this.setDocuments();