1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Bug fixes and tidyup

This commit is contained in:
Conor_Mack 2020-06-02 14:22:35 +01:00
parent 19a379e8d4
commit 2c228fee81
3 changed files with 8 additions and 9 deletions

View file

@ -11,11 +11,10 @@
let centerPlaceholder = textAlign === "center"
let style = buildStyle({ width, textAlign })
function handleChange(val) {
value = val
let _value = suffix ? value + suffix : value
onChange(_value)
onChange(value)
}
$: displayValue = suffix && value.endsWith(suffix) ? value.replace(new RegExp(`${suffix}$`), "") : value

View file

@ -30,7 +30,7 @@
textAlign="center"
placeholder={m.placeholder || ''}
value={!displayValues || displayValues[i] === '0' ? '' : displayValues[i]}
on:change={e => handleChange(e.target.value || 0, i)} />
onChange={value => handleChange(value || 0, i)} />
{/each}
</div>
</div>

View file

@ -236,27 +236,27 @@ export default {
label: "Heading",
key: "heading",
control: Input,
placeholder: "text",
placeholder: "text",
},
{
label: "Subheading",
key: "subheading",
control: Input,
placeholder: "text",
placeholder: "text",
},
{
label: "Content",
key: "content",
control: Input,
placeholder: "text"
placeholder: "text",
},
{
label: "Image",
key: "imageUrl",
control: Input,
placeholder: "src"
placeholder: "src",
},
]
],
},
},
{