mdi-help-circle
diff --git a/web/src/components/SubscriptionForm.vue b/web/src/components/SubscriptionForm.vue
index c52c93939..e90ccee09 100644
--- a/web/src/components/SubscriptionForm.vue
+++ b/web/src/components/SubscriptionForm.vue
@@ -27,34 +27,26 @@
-
- Plan
- {{ item.plan }}
-
+ Plan
+ {{ item.plan }}
-
- Pro users
- {{ item.users }}
-
+ Pro users
+ {{ item.users }}
-
- Expires at
- {{ item.expiresAt }}
-
+ Expires at
+ {{ item.expiresAt }}
-
- Status
-
- {{ item.state }}
-
-
+ Status
+
+ {{ item.state }}
+
diff --git a/web/src/components/TaskDetails.vue b/web/src/components/TaskDetails.vue
index e6297cb2a..7e2f5710c 100644
--- a/web/src/components/TaskDetails.vue
+++ b/web/src/components/TaskDetails.vue
@@ -89,19 +89,19 @@
{{ $t('created') }} |
- {{ item.created | formatDate }} |
+ {{ $filters.formatDate(item.created) }} |
{{ $t('started') }} |
- {{ item.start | formatDate }} |
+ {{ $filters.formatDate(item.start) }} |
{{ $t('end') }} |
- {{ item.end | formatDate }} |
+ {{ $filters.formatDate(item.end) }} |
{{ $t('duration') }} |
- {{ [item.start, item.end] | formatMilliseconds }} |
+ {{ $filters.formatMilliseconds([item.start, item.end]) }} |
diff --git a/web/src/components/TaskLink.vue b/web/src/components/TaskLink.vue
index 8c61524aa..383ace8f9 100644
--- a/web/src/components/TaskLink.vue
+++ b/web/src/components/TaskLink.vue
@@ -18,10 +18,9 @@
transition="fade-transition"
:disabled="!tooltip"
>
-