[Fix] reset closeable value on every open

This commit is contained in:
Robert von Burg 2021-11-25 11:25:34 +01:00
parent 3a5f7d6eb4
commit e1cf28e384
2 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,7 @@
{
"name": "strolch-wc-information-dialog",
"description": "Strolch WebComponent Information Dialog",
"version": "0.1.7",
"version": "0.1.8",
"authors": [
"Robert von Burg"
],

View File

@ -203,10 +203,9 @@
this.confirmation = true;
}
if (typeof data.cancelable === "boolean")
this.cancelable = data.cancelable;
if (typeof data.closeable === "boolean")
this.closeable = data.closeable;
if (this.confirmation)
this.cancelable = !(typeof data.cancelable === "boolean") || data.cancelable;
this.closeable = typeof data.closeable === "boolean" && data.closeable;
console.log("Message: " + this.title + ': ' + this.line1);
this.$.dlg.notifyResize();