diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-16 13:59:08 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-16 13:59:08 +0900 |
| commit | dca42fd6e67b4b7b4fe97428e792cc299d2afaa8 (patch) | |
| tree | dff466f076c9d048a26d5c9ef32fed09056e3edd /packages/frontend-embed/src | |
| parent | 🎨 (diff) | |
| download | sharkey-dca42fd6e67b4b7b4fe97428e792cc299d2afaa8.tar.gz sharkey-dca42fd6e67b4b7b4fe97428e792cc299d2afaa8.tar.bz2 sharkey-dca42fd6e67b4b7b4fe97428e792cc299d2afaa8.zip | |
enhance(frontend): improve ux for touch devices
Diffstat (limited to 'packages/frontend-embed/src')
| -rw-r--r-- | packages/frontend-embed/src/pages/not-found.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend-embed/src/pages/not-found.vue b/packages/frontend-embed/src/pages/not-found.vue index bbb03b4e64..061254a39a 100644 --- a/packages/frontend-embed/src/pages/not-found.vue +++ b/packages/frontend-embed/src/pages/not-found.vue @@ -6,7 +6,7 @@ SPDX-License-Identifier: AGPL-3.0-only <template> <div> <div class="_fullinfo"> - <img :src="notFoundImageUrl" class="_ghost"/> + <img :src="notFoundImageUrl" draggable="false"/> <div>{{ i18n.ts.notFoundDescription }}</div> </div> </div> @@ -20,5 +20,5 @@ import { i18n } from '@/i18n.js'; const serverMetadata = inject(DI.serverMetadata)!; -const notFoundImageUrl = computed(() => serverMetadata?.notFoundImageUrl ?? DEFAULT_NOT_FOUND_IMAGE_URL); +const notFoundImageUrl = computed(() => serverMetadata.notFoundImageUrl ?? DEFAULT_NOT_FOUND_IMAGE_URL); </script> |