Fix double escape of user-status in Dashboard widget
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
parent
c1bba2d46a
commit
67bbfda481
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -68,7 +68,7 @@ export default {
|
||||||
subText = this.t('user_status', '{status}, {timestamp}', {
|
subText = this.t('user_status', '{status}, {timestamp}', {
|
||||||
status,
|
status,
|
||||||
timestamp: moment(item.timestamp, 'X').fromNow(),
|
timestamp: moment(item.timestamp, 'X').fromNow(),
|
||||||
})
|
}, null, { escape: false, sanitize: false })
|
||||||
} else {
|
} else {
|
||||||
subText = status
|
subText = status
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue