mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-25 17:10:43 +00:00
Update OverlayPanel.vue
This commit is contained in:
parent
d1e5b04a10
commit
6e763d4daa
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue