File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,10 @@ export default class CompasSaveMenuPlugin extends LitElement {
35
35
}
36
36
37
37
render ( ) : TemplateResult {
38
- return html `<mwc- dialog heading= "${ translate ( 'compas.save.title' ) } " >
38
+ return html `<mwc- dialog
39
+ id= "compas-save-dlg"
40
+ heading = "${ translate ( 'compas.save.title' ) } "
41
+ >
39
42
${ ! this . doc || ! this . docName
40
43
? html `<compas- loading> </ compas- loading> `
41
44
: html `
Original file line number Diff line number Diff line change @@ -32,7 +32,10 @@ export default class CompasSaveAsMenuPlugin extends LitElement {
32
32
}
33
33
34
34
render ( ) : TemplateResult {
35
- return html `<mwc- dialog heading= "${ translate ( 'compas.save.title' ) } " >
35
+ return html `<mwc- dialog
36
+ id= "compas-save-as-dlg"
37
+ heading = "${ translate ( 'compas.save.title' ) } "
38
+ >
36
39
${ ! this . doc || ! this . docName
37
40
? html `<compas- loading> </ compas- loading> `
38
41
: html `
You can’t perform that action at this time.
0 commit comments