From 91074f4e31da3188ae91249f961851b94588d6f4 Mon Sep 17 00:00:00 2001 From: axolotle Date: Fri, 24 Mar 2023 21:35:31 +0100 Subject: [PATCH] misc fix --- app/.eslintrc.js | 5 ++- app/src/App.vue | 4 +-- app/src/components/AdressInputSelect.vue | 39 +++++++++------------ app/src/store/settings.js | 2 +- app/src/views/_partials/ViewLockOverlay.vue | 2 +- app/src/views/app/AppInfo.vue | 24 +++++++------ app/src/views/app/AppInstall.vue | 16 +++++---- app/src/views/app/AppList.vue | 2 +- app/src/views/user/UserImport.vue | 2 +- 9 files changed, 49 insertions(+), 47 deletions(-) diff --git a/app/.eslintrc.js b/app/.eslintrc.js index 9a5864e8..a95931eb 100644 --- a/app/.eslintrc.js +++ b/app/.eslintrc.js @@ -25,7 +25,10 @@ module.exports = { camelcase: 'warn', indent: 'off', 'no-irregular-whitespace': 'off', - 'no-unused-vars': 'warn', + 'no-unused-vars': [ + 'warn', + { varsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' } + ], quotes: 'warn', 'no-multiple-empty-lines': [ 'error', diff --git a/app/src/App.vue b/app/src/App.vue index 06382574..b3809363 100644 --- a/app/src/App.vue +++ b/app/src/App.vue @@ -8,10 +8,10 @@ exact exact-active-class="active" > - YunoHost logo + YunoHost logo - YunoHost logo + YunoHost logo diff --git a/app/src/components/AdressInputSelect.vue b/app/src/components/AdressInputSelect.vue index 815a028b..7a74748a 100644 --- a/app/src/components/AdressInputSelect.vue +++ b/app/src/components/AdressInputSelect.vue @@ -1,10 +1,13 @@