diff --git a/dashboard/src/views/AppConfigureView.vue b/dashboard/src/views/AppConfigureView.vue index 69915901b..91a3a5ce0 100644 --- a/dashboard/src/views/AppConfigureView.vue +++ b/dashboard/src/views/AppConfigureView.vue @@ -19,6 +19,7 @@ import AppsModel from '../models/AppsModel.js'; import { APP_TYPES, ISTATES, RSTATES, HSTATES } from '../constants.js'; const appsModel = AppsModel.create(); +const installationStateLabel = AppsModel.installationStateLabel; const id = ref(''); const app = ref({}); @@ -130,8 +131,13 @@ onBeforeUnmount(() => {
- -

{{ app.label || app.fqdn }}

+ +

+ {{ app.label || app.fqdn }}
+
+ {{ installationStateLabel(app) }} {{ app.message ? ' - ' + app.message : '' }} +
+

@@ -200,9 +206,20 @@ onBeforeUnmount(() => { .applink { display: flex; + align-items: center; color: var(--pankow-text-color); } +.titlebar h2 { + padding: 0; + margin: 0; +} + +.statelabel { + font-size: 12px; + margin-top: 6px; +} + .applink:not([href]) { cursor: not-allowed; }