Skip to content
This repository was archived by the owner on Sep 26, 2022. It is now read-only.

Commit 31e1ae2

Browse files
fix(Slider): Input has no hint prop
Signed-off-by: Florian-Schoenherr <[email protected]>
1 parent 316200f commit 31e1ae2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/svelte-materialify/src/components/Slider/Slider.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
export let inverseLabel = false;
2828
export let readonly = false;
2929
export let disabled = null;
30-
export let hint = '';
3130
export let style = null;
3231
3332
function format(val) {
@@ -106,7 +105,7 @@
106105
</style>
107106

108107
<!-- svelte-ignore a11y-label-has-associated-control -->
109-
<Input class="s-slider" {color} {readonly} {disabled} {hint}>
108+
<Input class="s-slider" {color} {readonly} {disabled}>
110109
<!-- Slot for prepend outside the input. -->
111110
<slot slot="prepend-outer" name="prepend-outer" />
112111
<label class="s-slider__label" class:inverse-label={inverseLabel}><slot /></label>

0 commit comments

Comments
 (0)