File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/editors/protocol104/wizards Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
import { html , TemplateResult } from 'lit-element' ;
2
2
import { get , translate } from 'lit-translate' ;
3
+ import { live } from 'lit-html/directives/live' ;
3
4
4
5
import '@material/mwc-list/mwc-list-item' ;
5
6
import '@material/mwc-select' ;
@@ -135,14 +136,14 @@ export function editAddressWizard(
135
136
</ mwc-textarea > ` ,
136
137
html `< wizard-textfield
137
138
label ="casdu "
138
- .maybeValue ="${ addressElement . getAttribute ( 'casdu' ) } "
139
+ .maybeValue ="${ live ( addressElement . getAttribute ( 'casdu' ) ?? ' ') } "
139
140
helper ="${ translate ( 'protocol104.wizard.casduHelper' ) } "
140
141
required
141
142
>
142
143
</ wizard-textfield > ` ,
143
144
html `< wizard-textfield
144
145
label ="ioa "
145
- .maybeValue ="${ addressElement . getAttribute ( 'ioa' ) } "
146
+ .maybeValue ="${ live ( addressElement . getAttribute ( 'ioa' ) ?? ' ') } "
146
147
helper ="${ translate ( 'protocol104.wizard.ioaHelper' ) } "
147
148
required
148
149
>
You can’t perform that action at this time.
0 commit comments