@lowcodeunit/applications-flow-common 1.39.45-hardening-bugs → 1.39.46-hardening-bugs
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/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +6 -1
- package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +6 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +10 -0
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +10 -0
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -5904,6 +5904,11 @@ class EditApplicationDialogComponent {
|
|
5904
5904
|
this.snackBar.open('Application Succesfully Updated', 'Dismiss', {
|
5905
5905
|
duration: 5000,
|
5906
5906
|
});
|
5907
|
+
setTimeout(() => {
|
5908
|
+
this.snackBar.open('Configuring Application: This may take a couple minutes.', 'Dismiss', {
|
5909
|
+
duration: 10000,
|
5910
|
+
});
|
5911
|
+
}, 6000);
|
5907
5912
|
this.CloseDialog();
|
5908
5913
|
}
|
5909
5914
|
else {
|
@@ -6096,6 +6101,11 @@ class NewApplicationDialogComponent {
|
|
6096
6101
|
this.snackBar.open('Application Succesfully Created', 'Dismiss', {
|
6097
6102
|
duration: 5000,
|
6098
6103
|
});
|
6104
|
+
setTimeout(() => {
|
6105
|
+
this.snackBar.open('Configuring Application: This may take a couple minutes.', 'Dismiss', {
|
6106
|
+
duration: 10000,
|
6107
|
+
});
|
6108
|
+
}, 6000);
|
6099
6109
|
this.CloseDialog();
|
6100
6110
|
}
|
6101
6111
|
else {
|