diff --git a/app/src/components/globals/YunoAlert.vue b/app/src/components/globals/YunoAlert.vue index 421835f5..c3a6d42c 100644 --- a/app/src/components/globals/YunoAlert.vue +++ b/app/src/components/globals/YunoAlert.vue @@ -28,6 +28,7 @@ export default { computed: { _icon () { + if (this.icon) return this.icon return DEFAULT_STATUS_ICON[this.variant] } } diff --git a/app/src/i18n/locales/en.json b/app/src/i18n/locales/en.json index eaf563df..cb1652a3 100644 --- a/app/src/i18n/locales/en.json +++ b/app/src/i18n/locales/en.json @@ -75,7 +75,8 @@ }, "info": { "forum": "Search or ask the forum!", - "problem": "A problem with this app?" + "problem": "A problem with this app?", + "config_panel_error": "An error prevents the configuration panel from being displayed:" }, "install": { "license": "License: {license}", diff --git a/app/src/views/app/AppInfo.vue b/app/src/views/app/AppInfo.vue index 66a5d66c..b1c314d2 100644 --- a/app/src/views/app/AppInfo.vue +++ b/app/src/views/app/AppInfo.vue @@ -1,5 +1,8 @@