ddb01fb968
* Improve Chinese Simplified translate * Use whitespace-nowrap class to fix Suggest button * fix formatting --------- Co-authored-by: Bernd Storath <999999bst@gmail.com>
53 lines
1.2 KiB
Vue
53 lines
1.2 KiB
Vue
<template>
|
|
<div class="flex items-center">
|
|
<FormLabel :for="id">
|
|
{{ label }}
|
|
</FormLabel>
|
|
<BaseTooltip v-if="description" :text="description">
|
|
<IconsInfo class="size-4" />
|
|
</BaseTooltip>
|
|
</div>
|
|
<div class="flex gap-1">
|
|
<BaseInput
|
|
:id="id"
|
|
v-model.trim="data"
|
|
:name="id"
|
|
type="text"
|
|
class="w-full"
|
|
:placeholder="placeholder"
|
|
/>
|
|
<ClientOnly>
|
|
<AdminSuggestDialog :url="url" @change="data = $event">
|
|
<BasePrimaryButton as="span">
|
|
<div class="flex items-center gap-3">
|
|
<IconsSparkles class="w-4" />
|
|
<span class="whitespace-nowrap">
|
|
{{ $t('admin.config.suggest') }}
|
|
</span>
|
|
</div>
|
|
</BasePrimaryButton>
|
|
</AdminSuggestDialog>
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{
|
|
id: string;
|
|
label: string;
|
|
description?: string;
|
|
placeholder?: string;
|
|
url: '/api/admin/ip-info' | '/api/setup/4';
|
|
}>();
|
|
|
|
const data = defineModel<string | null>({
|
|
set(value) {
|
|
const temp = value?.trim() ?? null;
|
|
if (temp === '') {
|
|
return null;
|
|
}
|
|
return temp;
|
|
},
|
|
});
|
|
</script>
|