1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-12-20 02:21:17 +00:00

Lint: Fix linter errors

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2024-12-03 14:59:11 +01:00
parent 6344610c18
commit fd98147757
Signed by: luzifer
SSH key fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
2 changed files with 8 additions and 8 deletions

View file

@ -129,7 +129,7 @@ export default defineComponent({
return {
error: null,
fileName: '',
fileType: null,
fileType: '',
loading: true,
path: '',
text: '',

View file

@ -9,22 +9,22 @@ import { createI18n } from 'vue-i18n'
import ContentDisplay from './display.vue'
const messages = {
en: {
fileNotFound: 'The requested file has not been found.',
genericError: 'Something went wrong (Status {status})',
loading: 'Loading file details...',
notPermitted: 'Access to this file was denied.',
},
de: {
fileNotFound: 'Die angegebene Datei wurde nicht gefunden.',
genericError: 'Irgendwas lief schief... (Status {status})',
loading: 'Lade Datei-Informationen...',
notPermitted: 'Der Zugriff auf diese Datei wurde verweigert.',
},
en: {
fileNotFound: 'The requested file has not been found.',
genericError: 'Something went wrong (Status {status})',
loading: 'Loading file details...',
notPermitted: 'Access to this file was denied.',
},
}
const app = createApp({
name: 'Share',
name: 'ShareApp',
render() {
return h(ContentDisplay)
},