1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-07-28 17:54:36 +02:00

Update OverlayPanel.vue

This commit is contained in:
syuilo
2026-05-31 13:28:12 +09:00
parent d1e5b04a10
commit 6e763d4daa

View File

@@ -31,8 +31,9 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { computed, defineAsyncComponent, nextTick, onMounted, onUnmounted, ref, shallowRef, useTemplateRef, watch } from 'vue';
import { deviceKind } from '@/utility/device-kind.js';
const isMobile = true;
const isMobile = deviceKind === 'smartphone' || deviceKind === 'tablet';
const props = defineProps<{
title: string;