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 @@ -25,6 +25,7 @@ import {
25
25
getFullPath ,
26
26
} from '../foundation/foundation.js' ;
27
27
import { hasScaleFields , hasUnitMultiplierField } from '../foundation/cdc.js' ;
28
+ import { live } from 'lit-html/directives/live' ;
28
29
29
30
const allowedMultipliers = [
30
31
'm' ,
@@ -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