Skip to content

Commit

Permalink
Fix: date locale (#4122)
Browse files Browse the repository at this point in the history
  • Loading branch information
daniele-mng authored Aug 14, 2024
1 parent c551962 commit 0828a10
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/gmp/models/date.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

import moment from 'moment-timezone';

import 'moment/locale/ar';
import 'moment/locale/de';
import 'moment/locale/fr';
import 'moment/locale/pt-br.js';
import 'moment/locale/ru.js';
import 'moment/locale/tr.js';
import 'moment/locale/zh-cn.js';
import 'moment/dist/locale/ar';
import 'moment/dist/locale/de';
import 'moment/dist/locale/fr';
import 'moment/dist/locale/pt-br.js';
import 'moment/dist/locale/ru.js';
import 'moment/dist/locale/tr.js';
import 'moment/dist/locale/zh-cn.js';

export const {
isDuration,
Expand Down

0 comments on commit 0828a10

Please sign in to comment.