mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
parent
951364a0bb
commit
09fae0bfef
@ -6,6 +6,10 @@ import { HeaderTitle, SwitchWithLabel } from '../common';
|
||||
|
||||
import style from './history.scss';
|
||||
|
||||
const dateOptions = { day: '2-digit', month: '2-digit', year: 'numeric', hour: '2-digit', minute: '2-digit', second: '2-digit' };
|
||||
|
||||
const formatDate = v => (new Date(v)).toLocaleString('nb-NO', dateOptions);
|
||||
|
||||
class HistoryList extends Component {
|
||||
|
||||
toggleShowDiff () {
|
||||
@ -36,7 +40,7 @@ class HistoryList extends Component {
|
||||
<TableHeader name="type">Type</TableHeader>
|
||||
<TableHeader name="createdBy">User</TableHeader>
|
||||
<TableHeader name="diff">Diff</TableHeader>
|
||||
<TableHeader numeric name="createdAt" cellFormatter={(v) => (new Date(v)).toLocaleString('nb-NO')}>Time</TableHeader>
|
||||
<TableHeader numeric name="createdAt" cellFormatter={formatDate}>Time</TableHeader>
|
||||
</Table>);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user