@progressive-development/pd-dialog 0.0.16 → 0.0.17
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/package.json +1 -1
- package/src/PdSubmitDialog.js +2 -2
package/package.json
CHANGED
package/src/PdSubmitDialog.js
CHANGED
|
@@ -118,7 +118,7 @@ export class PdSubmitDialog extends LitElement {
|
|
|
118
118
|
if (this.status === STATUS_SEND_SUCCESS) {
|
|
119
119
|
|
|
120
120
|
this._buttons = [
|
|
121
|
-
{name: 'Close'},];
|
|
121
|
+
{name: 'Close', key: 2},];
|
|
122
122
|
|
|
123
123
|
/*
|
|
124
124
|
if (this.type === 'mail') {
|
|
@@ -137,7 +137,7 @@ export class PdSubmitDialog extends LitElement {
|
|
|
137
137
|
} else if (this.status === STATUS_SEND_FAILED) {
|
|
138
138
|
this._buttons = [];
|
|
139
139
|
if (this.type === 'mail') {
|
|
140
|
-
this._buttons = [{ name: 'Close
|
|
140
|
+
this._buttons = [{ name: 'Close' }];
|
|
141
141
|
} else {
|
|
142
142
|
this._buttons = [
|
|
143
143
|
{ name: 'Bewerk gegevens', key: 2 },
|