Skip to content

Commit

Permalink
fix src/plugins/data/public/field_formats/constants.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tsullivan committed Jul 9, 2020
1 parent d42275c commit 231f793
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/data/public/field_formats/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
*/

import { baseFormatters } from '../../common';
import { DateFormat } from './converters/date';
import { DateFormat, DateNanosFormat } from './converters';

export const baseFormattersPublic = [DateFormat, ...baseFormatters];
export const baseFormattersPublic = [DateFormat, DateNanosFormat, ...baseFormatters];

0 comments on commit 231f793

Please sign in to comment.