Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2020-08-27 11:42:48 +0300
committerGeorg Ehrke <developer@georgehrke.com>2020-08-27 11:42:48 +0300
commit67bbfda481226be3f8e0b133d1e0ac7aea493009 (patch)
treeaab981dd3af13a3a3e764ea3e5c3e9003f604b13 /apps/user_status/src
parentc1bba2d46aba3c785b69e84c3239ac556b12dd9c (diff)
Fix double escape of user-status in Dashboard widget
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'apps/user_status/src')
-rw-r--r--apps/user_status/src/views/Dashboard.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_status/src/views/Dashboard.vue b/apps/user_status/src/views/Dashboard.vue
index 2a1545d0596..747837beb81 100644
--- a/apps/user_status/src/views/Dashboard.vue
+++ b/apps/user_status/src/views/Dashboard.vue
@@ -68,7 +68,7 @@ export default {
subText = this.t('user_status', '{status}, {timestamp}', {
status,
timestamp: moment(item.timestamp, 'X').fromNow(),
- })
+ }, null, { escape: false, sanitize: false })
} else {
subText = status
}