@progressive-development/pd-wizard 0.1.78 → 0.1.79

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/PdWizard.js +2 -5
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "order",
15
15
  "steps"
16
16
  ],
17
- "version": "0.1.78",
17
+ "version": "0.1.79",
18
18
  "main": "index.js",
19
19
  "module": "index.js",
20
20
  "scripts": {
package/src/PdWizard.js CHANGED
@@ -302,10 +302,7 @@ export class PdWizard extends LitElement {
302
302
  }
303
303
 
304
304
  _closeWizard() {
305
- // eslint-disable-next-line no-restricted-globals
306
- const r = confirm(msg('Bisherige Eingaben gehen verloren! Auftrag dennoch abbrechen?', {desc: '#pd.wizard.abort#'}));
307
- if (r === true) {
308
- this.dispatchEvent(new CustomEvent('close-wizard'));
309
- }
305
+ // eslint-disable-next-line no-restricted-globals
306
+ this.dispatchEvent(new CustomEvent('close-wizard'));
310
307
  }
311
308
  }