Merge pull request #392 from jxxghp/cursor/translate-missing-string-and-adjust-slider-max-value-4d93

This commit is contained in:
jxxghp
2025-09-16 11:12:31 +08:00
committed by GitHub
3 changed files with 29 additions and 55 deletions
+1 -1
View File
@@ -872,7 +872,7 @@ export default {
batchEnableError: 'Batch enable operation failed', batchEnableError: 'Batch enable operation failed',
batchPauseError: 'Batch pause operation failed', batchPauseError: 'Batch pause operation failed',
batchDeleteError: 'Batch delete operation failed', batchDeleteError: 'Batch delete operation failed',
minSubscribers: 'Min Subscribers', minSubscribers: 'Minimum Subscribers',
}, },
recommend: { recommend: {
all: 'All', all: 'All',
+11 -24
View File
@@ -217,33 +217,20 @@ async function fetchData({ done }: { done: any }) {
<div class="mr-5"> <div class="mr-5">
<VLabel>{{ t('tmdb.rating') }}</VLabel> <VLabel>{{ t('tmdb.rating') }}</VLabel>
</div> </div>
<div class="flex align-center" style="width: 300px;"> <VSlider
<VTextField
v-model="filterParams.min_rating" v-model="filterParams.min_rating"
variant="outlined" thumb-label
density="compact"
type="number"
hide-details
single-line
min="0"
max="10" max="10"
step="0.1"
style="width: 80px;"
/>
<span class="mx-2">-</span>
<VTextField
v-model="filterParams.max_rating"
variant="outlined"
density="compact"
type="number"
hide-details
single-line
min="0" min="0"
max="10" :step="0.1"
step="0.1" class="align-center"
style="width: 80px;" hide-details
/> style="width: 200px;"
</div> >
<template v-slot:append>
<span class="ml-2 text-body-2">- 10</span>
</template>
</VSlider>
</div> </div>
<div class="flex justify-start align-center"> <div class="flex justify-start align-center">
+11 -24
View File
@@ -236,33 +236,20 @@ function removeData(id: number) {
<div class="mr-5"> <div class="mr-5">
<VLabel>{{ t('tmdb.rating') }}</VLabel> <VLabel>{{ t('tmdb.rating') }}</VLabel>
</div> </div>
<div class="flex align-center" style="width: 300px;"> <VSlider
<VTextField
v-model="filterParams.min_rating" v-model="filterParams.min_rating"
variant="outlined" thumb-label
density="compact"
type="number"
hide-details
single-line
min="0"
max="10" max="10"
step="0.1"
style="width: 80px;"
/>
<span class="mx-2">-</span>
<VTextField
v-model="filterParams.max_rating"
variant="outlined"
density="compact"
type="number"
hide-details
single-line
min="0" min="0"
max="10" :step="0.1"
step="0.1" class="align-center"
style="width: 80px;" hide-details
/> style="width: 200px;"
</div> >
<template v-slot:append>
<span class="ml-2 text-body-2">- 10</span>
</template>
</VSlider>
</div> </div>
</div> </div>