mirror of
https://github.com/sim1222/misskey.git
synced 2025-04-29 02:37:22 +09:00
fix
This commit is contained in:
parent
a8c7c0745c
commit
f9f72d954c
@ -1,8 +1,7 @@
|
||||
<template>
|
||||
<div class="omfetrab" :class="['s' + size, 'w' + width, 'h' + height, { asDrawer }]" :style="{ maxHeight: maxHeight ? maxHeight + 'px' : undefined }">
|
||||
<input ref="search" v-model.trim="q" class="search" data-prevent-emoji-insert :class="{ filled: q != null && q != '' }" :placeholder="i18n.ts.search" type="search" @paste.stop="paste" @keyup.enter="done()">
|
||||
<MkSwitch class="_formBlock" v-model="withRenote">renote
|
||||
</MkSwitch>
|
||||
<MkSwitch v-model="withRenote">{{ i18n.ts.reactWithRenote }}</MkSwitch>
|
||||
<div ref="emojis" class="emojis">
|
||||
<section class="result">
|
||||
<div v-if="searchResultCustom.length > 0" class="body">
|
||||
|
@ -4,7 +4,7 @@ import { popup } from '@/os';
|
||||
class ReactionPicker {
|
||||
private src: Ref<HTMLElement | null> = ref(null);
|
||||
private manualShowing = ref(false);
|
||||
private onChosen?: ({ reaction: string, withRenote: boolean }) => void;
|
||||
private onChosen?: (reaction: string, withRenote: boolean) => void;
|
||||
private onClosed?: () => void;
|
||||
|
||||
constructor() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user