1
0
Fork 0
mirror of https://github.com/paricafe/misskey.git synced 2025-04-21 17:53:08 -05:00
This commit is contained in:
FLY_MC 2025-04-01 00:50:54 +08:00
parent fc8cada601
commit 1f1d49b266
2 changed files with 2 additions and 2 deletions
packages/frontend/src
components
ui/deck

View file

@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template>
<div :class="$style.root">
<input v-model="query" :class="$style.input" type="search" :placeholder="q">
<button :class="$style.button" @click="search"><i class="ti ti-search"></i> {{ i18n.ts.searchByGoogle }}</button>
<button :class="$style.button" @click.stop="search"><i class="ti ti-search"></i> {{ i18n.ts.searchByGoogle }}</button>
</div>
</template>

View file

@ -113,7 +113,7 @@ async function setType() {
}
if (src == null) return;
updateColumn(props.column.id, {
tl: src ?? undefined,
tl: src,
});
}