raise-common-lib 0.0.162 → 0.0.164

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.
@@ -2465,8 +2465,8 @@
2465
2465
  var _this = this;
2466
2466
  /** @type {?} */
2467
2467
  var dialogRef = this.dialog.showCommonDilaog({
2468
- title: "Delete Comment?",
2469
- description: "Are you sure you want to delete this Comment?",
2468
+ title: this.translation["DELETE_COMMENT"],
2469
+ description: this.translation["DELETE_COMMENT_CONFIRM"],
2470
2470
  saveBtnLabel: this.translation.DELETE,
2471
2471
  });
2472
2472
  dialogRef.afterClosed().subscribe((/**
@@ -2474,7 +2474,7 @@
2474
2474
  * @return {?}
2475
2475
  */
2476
2476
  function (res) {
2477
- if (!res) {
2477
+ if (res === 'close') {
2478
2478
  return;
2479
2479
  }
2480
2480
  /** @type {?} */