fix ui
This commit is contained in:
parent
d33b7b7d6e
commit
128203b28d
|
@ -11783,6 +11783,14 @@ export interface Locale extends ILocale {
|
|||
* 例: misskey.example.com
|
||||
*/
|
||||
"serverHostPlaceholder": string;
|
||||
/**
|
||||
* 投稿日時from
|
||||
*/
|
||||
"postFrom": string;
|
||||
/**
|
||||
* 投稿日時to
|
||||
*/
|
||||
"postTo": string;
|
||||
};
|
||||
"_serverSetupWizard": {
|
||||
/**
|
||||
|
|
|
@ -3150,6 +3150,8 @@ _search:
|
|||
pleaseEnterServerHost: "サーバーのホストを入力してください"
|
||||
pleaseSelectUser: "ユーザーを選択してください"
|
||||
serverHostPlaceholder: "例: misskey.example.com"
|
||||
postFrom: "投稿日時from"
|
||||
postTo: "投稿日時to"
|
||||
|
||||
_serverSetupWizard:
|
||||
installCompleted: "Misskeyのインストールが完了しました!"
|
||||
|
|
|
@ -20,8 +20,12 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
|
||||
<div class="_gaps_m">
|
||||
<div style="display: flex; gap: 8px;">
|
||||
<MkInput v-model="rangeStartAt" type="datetime-local"/>
|
||||
<MkInput v-model="rangeEndAt" type="datetime-local"/>
|
||||
<MkInput v-model="rangeStartAt" type="datetime-local">
|
||||
<template #label>{{ i18n.ts._search.postFrom }}</template>
|
||||
</MkInput>
|
||||
<MkInput v-model="rangeEndAt" type="datetime-local">
|
||||
<template #label>{{ i18n.ts._search.postTo }}</template>
|
||||
</MkInput>
|
||||
</div>
|
||||
|
||||
<MkRadios v-model="searchScope">
|
||||
|
|
Loading…
Reference in New Issue