Add translation strings and change the input type to search

This commit is contained in:
mfcar 2023-02-21 19:30:42 +00:00
parent f650ae7f18
commit eeb7c80518
No known key found for this signature in database
11 changed files with 20 additions and 11 deletions

View file

@ -21,7 +21,7 @@
<p v-if="!episodes.length" class="py-4 text-center text-lg">{{ $strings.MessageNoEpisodes }}</p>
<div v-if="episodes.length" class="w-full py-3 mx-auto flex">
<form @submit.prevent="submit" class="flex flex-grow">
<ui-text-input v-model="search" @input="inputUpdate" placeholder="Search episode..." class="flex-grow mr-2 text-sm md:text-base" />
<ui-text-input v-model="search" @input="inputUpdate" type="search" :placeholder="$strings.PlaceholderSearchEpisode" class="flex-grow mr-2 text-sm md:text-base" />
</form>
</div>
<template v-for="episode in episodesList">