I have stored a value in defaults which I want to pre fill in the editor but it doesn't show up.
defaults: {
name: { value: "" },
hs_Timezone: { value: "" },
hs_IP: { value: "12345" }, //not shown in editor
...
This is the html code:
<div class="form-row">
<label for="node-input-hs_IP"><span> IP</span></label>
<input
type="text"
id="node-input-hs_IP"
style="width: 250px;"
placeholder="IP"
/>
</div>