diff --git a/src/components/input/SearchBox.stories.ts b/src/components/input/SearchBox.stories.ts index 845a62059..f339fa1e7 100644 --- a/src/components/input/SearchBox.stories.ts +++ b/src/components/input/SearchBox.stories.ts @@ -8,7 +8,7 @@ const meta: Meta = { component: SearchBox, tags: ['autodocs'], argTypes: { - placeHolder: { + placeholder: { control: 'text' }, showBorder: { @@ -22,7 +22,7 @@ const meta: Meta = { } }, args: { - placeHolder: 'Search...', + placeholder: 'Search...', showBorder: false, size: 'md' } diff --git a/src/components/input/SearchBox.vue b/src/components/input/SearchBox.vue index bf05daf8b..5e82736d3 100644 --- a/src/components/input/SearchBox.vue +++ b/src/components/input/SearchBox.vue @@ -5,10 +5,10 @@ ref="input" v-model="searchQuery" :aria-label=" - placeHolder || t('templateWidgets.sort.searchPlaceholder', 'Search...') + placeholder || t('templateWidgets.sort.searchPlaceholder', 'Search...') " :placeholder=" - placeHolder || t('templateWidgets.sort.searchPlaceholder', 'Search...') + placeholder || t('templateWidgets.sort.searchPlaceholder', 'Search...') " type="text" unstyled @@ -19,17 +19,19 @@