fix: dialogs not coming up

This commit is contained in:
ThatOneCalculator 2023-04-02 00:07:48 -07:00
parent 565493b56f
commit 38ade38f3f
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 3 additions and 5 deletions

View file

@ -1,6 +1,6 @@
{
"name": "calckey",
"version": "13.2.0-dev22",
"version": "13.2.0-dev23",
"codename": "aqua",
"repository": {
"type": "git",

View file

@ -13,7 +13,7 @@
<MkLoading v-else-if="type === 'waiting'" :class="$style.iconInner" :em="true"/>
</div>
<header v-if="title" :class="$style.title"><Mfm :text="title"/></header>
<header v-if="title == null && input.type === 'password'" :class="$style.title"><Mfm :text="i18n.ts.password"/></header>
<header v-if="title == null && (input && input.type === 'password')" :class="$style.title"><Mfm :text="i18n.ts.password"/></header>
<div v-if="text" :class="$style.text"><Mfm :text="text"/></div>
<MkInput v-if="input && input.type !== 'paragraph'" v-model="inputValue" autofocus :type="input.type || 'text'" :placeholder="input.placeholder || undefined" @keydown="onInputKeydown">
<template v-if="input.type === 'password'" #prefix><i class="ph-password ph-bold ph-lg"></i></template>

View file

@ -715,9 +715,7 @@ export async function openEmojiPicker(
for (const node of Array.from(record.addedNodes).filter(
(node) => node instanceof HTMLElement,
) as HTMLElement[]) {
const textareas = node.querySelectorAll(
"textarea, input",
) as NodeListOf<NonNullable<typeof activeTextarea>>;
const textareas = node.querySelectorAll("textarea, input");
for (const textarea of Array.from(textareas).filter(
(textarea) => textarea.dataset.preventEmojiInsert == null,
)) {