@gipisistemas/ngx-core 1.0.18 → 1.0.19
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.
|
@@ -1170,12 +1170,12 @@ class ConfirmDialog {
|
|
|
1170
1170
|
mat-dialog-content
|
|
1171
1171
|
class="g-confirm-dialog-content"
|
|
1172
1172
|
>
|
|
1173
|
-
@if (dialogData.message
|
|
1173
|
+
@if (!!dialogData.message) {
|
|
1174
1174
|
<p class="g-confirm-dialog-message">
|
|
1175
1175
|
{{ dialogData.message }}
|
|
1176
1176
|
</p>
|
|
1177
1177
|
}
|
|
1178
|
-
@if (
|
|
1178
|
+
@if (!!dialogData.listMessage) {
|
|
1179
1179
|
<ul class="g-confirm-dialog-list-message">
|
|
1180
1180
|
@for (message of dialogData.listMessage; track $index) {
|
|
1181
1181
|
<li>{{ message }}</li>
|
|
@@ -1230,12 +1230,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImpo
|
|
|
1230
1230
|
mat-dialog-content
|
|
1231
1231
|
class="g-confirm-dialog-content"
|
|
1232
1232
|
>
|
|
1233
|
-
@if (dialogData.message
|
|
1233
|
+
@if (!!dialogData.message) {
|
|
1234
1234
|
<p class="g-confirm-dialog-message">
|
|
1235
1235
|
{{ dialogData.message }}
|
|
1236
1236
|
</p>
|
|
1237
1237
|
}
|
|
1238
|
-
@if (
|
|
1238
|
+
@if (!!dialogData.listMessage) {
|
|
1239
1239
|
<ul class="g-confirm-dialog-list-message">
|
|
1240
1240
|
@for (message of dialogData.listMessage; track $index) {
|
|
1241
1241
|
<li>{{ message }}</li>
|
|
@@ -5923,6 +5923,7 @@ class BaseModel {
|
|
|
5923
5923
|
this.id = data?.id ?? null;
|
|
5924
5924
|
this.integrationIdentifier = data?.integrationIdentifier ?? null;
|
|
5925
5925
|
this.companyId = data?.companyId ?? null;
|
|
5926
|
+
this.tenantId = data?.tenantId ?? null;
|
|
5926
5927
|
this.enabled = data?.enabled ?? true;
|
|
5927
5928
|
this.createdDate = data?.createdDate ?? null;
|
|
5928
5929
|
this.modifiedDate = data?.modifiedDate ?? null;
|