fix time format

pull/289/head
Pete Matsyburka 1 year ago
parent 5b3cffeb73
commit da9266befc

@ -388,6 +388,7 @@ export default {
const yearFormats = {
YYYY: 'numeric',
YYY: 'numeric',
YY: '2-digit'
}

@ -15,6 +15,7 @@ module TimeUtils
YEAR_FORMATS = {
'YYYY' => '%Y',
'YYY' => '%Y',
'YY' => '%y'
}.freeze

Loading…
Cancel
Save