mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 13:22:58 -05:00
Fix search bar placeholder not working after changing language #4
This commit is contained in:
parent
3fc43d27a6
commit
8e7087c461
1 changed files with 13 additions and 5 deletions
|
@ -16,10 +16,18 @@ export default {
|
|||
|
||||
<template>
|
||||
<div class="relative hidden md:block">
|
||||
<label for="searchBar" class="hidden">{{ $t("main.search") }}</label>
|
||||
<v-icon name="io-search-outline" class="text-black absolute my-auto inset-y-0 left-2"></v-icon>
|
||||
<input type="text" :placeholder="$t('main.search')"
|
||||
@keyup.enter=redirectToSearch v-model="searchInput"
|
||||
class="rounded-md p-1 pl-8 text-black" ref="searchInput" />
|
||||
<form class="relative">
|
||||
<label for="searchBar" class="hidden">{{ $t("main.search") }}</label>
|
||||
<v-icon name="io-search-outline" class="absolute my-auto inset-y-0 left-2"></v-icon>
|
||||
<input
|
||||
type="text"
|
||||
id="searchBar"
|
||||
name="searchBar"
|
||||
:placeholder="$t('main.search')"
|
||||
v-model="searchInput"
|
||||
@keyup.enter=redirectToSearch
|
||||
class="rounded-md p-1 pl-8 text-black bg-white placeholder:text-black"
|
||||
/>
|
||||
</form>
|
||||
</div>
|
||||
</template>
|
Loading…
Reference in a new issue