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.
- package/bundles/raise-common-lib.umd.js +3 -3
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/commentary/index.component.js +4 -4
- package/esm5/lib/commentary/index.component.js +4 -4
- package/fesm2015/raise-common-lib.js +3 -3
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +3 -3
- package/fesm5/raise-common-lib.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/style/reset/dropdown.scss +4 -2
|
@@ -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: "
|
|
2277
|
-
description:
|
|
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 (
|
|
2285
|
+
if (res === 'close') {
|
|
2286
2286
|
return;
|
|
2287
2287
|
}
|
|
2288
2288
|
/** @type {?} */
|