raise-common-lib 0.0.162 → 0.0.163

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.
@@ -2273,8 +2273,8 @@ var RsCommentaryComponent = /** @class */ (function () {
2273
2273
  var _this = this;
2274
2274
  /** @type {?} */
2275
2275
  var dialogRef = this.dialog.showCommonDilaog({
2276
- title: "Delete Comment?",
2277
- description: "Are you sure you want to delete this Comment?",
2276
+ title: this.translation["DELETE_COMMENT"],
2277
+ description: this.translation["DELETE_COMMENT_CONFIRM"],
2278
2278
  saveBtnLabel: this.translation.DELETE,
2279
2279
  });
2280
2280
  dialogRef.afterClosed().subscribe((/**
@@ -2282,7 +2282,7 @@ var RsCommentaryComponent = /** @class */ (function () {
2282
2282
  * @return {?}
2283
2283
  */
2284
2284
  function (res) {
2285
- if (!res) {
2285
+ if (res === 'close') {
2286
2286
  return;
2287
2287
  }
2288
2288
  /** @type {?} */