mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 12:30:41 +01:00
feat(ui): 24 time format
This commit is contained in:
parent
8dd85afa15
commit
0f46d790f3
@ -21,9 +21,9 @@ Vue.filter('formatDate', (value) => {
|
|||||||
const now = moment();
|
const now = moment();
|
||||||
|
|
||||||
if (now.isSame(date, 'day')) {
|
if (now.isSame(date, 'day')) {
|
||||||
return `${date.fromNow()} (${date.format('LT')})`; // Display only time if today
|
return `${date.fromNow()} (${date.format('HH:mm')})`; // Display only time if today
|
||||||
}
|
}
|
||||||
return date.format('L LT'); // Display only date otherwise
|
return date.format('L HH:mm'); // Display only date otherwise
|
||||||
});
|
});
|
||||||
Vue.filter('formatTime', (value) => (value ? moment(String(value)).format('LTS') : '—'));
|
Vue.filter('formatTime', (value) => (value ? moment(String(value)).format('LTS') : '—'));
|
||||||
Vue.filter('formatLog', (value) => (value ? convert.toHtml(String(value)) : value));
|
Vue.filter('formatLog', (value) => (value ? convert.toHtml(String(value)) : value));
|
||||||
|
Loading…
Reference in New Issue
Block a user