diff --git a/zero.Backoffice.UI/app/directives/v-date.ts b/zero.Backoffice.UI/app/directives/v-date.ts
index 8a9230c6..47275819 100644
--- a/zero.Backoffice.UI/app/directives/v-date.ts
+++ b/zero.Backoffice.UI/app/directives/v-date.ts
@@ -14,6 +14,6 @@ export default (el, binding) =>
return;
}
- el.innerHTML = formatDate(binding.value);
+ el.innerHTML = formatDate(binding.value, binding.arg);
}
};
\ No newline at end of file
diff --git a/zero.Backoffice.UI/app/modules/settings/settings.vue b/zero.Backoffice.UI/app/modules/settings/settings.vue
index b0a180f8..5f187819 100644
--- a/zero.Backoffice.UI/app/modules/settings/settings.vue
+++ b/zero.Backoffice.UI/app/modules/settings/settings.vue
@@ -18,7 +18,17 @@
-
+
@@ -34,6 +44,7 @@
page: true,
appCount: 0,
groups: [],
+ meta: null,
tokens: {
'zero_version': '0.0.1',
'plugin_count': 3
@@ -42,6 +53,8 @@
mounted()
{
+ this.meta = JSON.parse(document.getElementById('zero-meta').innerHTML);
+
this.groups = useUiStore().settingGroups;
this.appCount = useAppStore().applications.length;
@@ -149,4 +162,23 @@
top: -4px;
right: -4px;
}
+
+ .settings-footer
+ {
+ font-size: var(--font-size-xs);
+ color: var(--color-text-dim);
+ display: flex;
+ gap: var(--padding);
+
+ p
+ {
+ margin: 0;
+ line-height: 1.4;
+ }
+
+ .-version
+ {
+ color: var(--color-text);
+ }
+ }
\ No newline at end of file
diff --git a/zero.Backoffice.UI/index.html b/zero.Backoffice.UI/index.html
index d0b32514..e35c5c6d 100644
--- a/zero.Backoffice.UI/index.html
+++ b/zero.Backoffice.UI/index.html
@@ -20,6 +20,7 @@
+