1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00

Fix text casing on some button settings

This commit is contained in:
Andrew Kingston 2021-06-30 08:46:53 +01:00
parent d2910ae5c8
commit 1cf0d3b0cf
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@
}
</script>
<ActionButton on:click={drawer.show}>Define Actions</ActionButton>
<ActionButton on:click={drawer.show}>Define actions</ActionButton>
<Drawer bind:this={drawer} title={"Actions"}>
<svelte:fragment slot="description">
Define what actions to run.

View file

@ -107,7 +107,7 @@
loading = false
}
$: displayValue = value ? value.substring(3) : "Pick Icon"
$: displayValue = value ? value.substring(3) : "Pick icon"
$: totalPages = Math.ceil(filteredIcons.length / maxIconsPerPage)
$: pageEndIdx = maxIconsPerPage * currentPage