Format fixes
parent
6de66bcaf6
commit
c9a4362607
|
@ -1168,9 +1168,7 @@ export default {
|
|||
let date = new Date(dateMeta.year, dateMeta.month, dateMeta.day);
|
||||
|
||||
if (this.showTime) {
|
||||
(this.hourFormat === '12' && this.currentHour !== 12 && this.pm) ?
|
||||
date.setHours(this.currentHour + 12) :
|
||||
date.setHours(this.currentHour);
|
||||
this.hourFormat === '12' && this.currentHour !== 12 && this.pm ? date.setHours(this.currentHour + 12) : date.setHours(this.currentHour);
|
||||
|
||||
date.setMinutes(this.currentMinute);
|
||||
date.setSeconds(this.currentSecond);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export default {
|
||||
root: {
|
||||
gap: '0.25rem',
|
||||
gap: '0.25rem'
|
||||
},
|
||||
icon: {
|
||||
size: '1rem',
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
export default {
|
||||
root: {
|
||||
gap: '0.25rem',
|
||||
gap: '0.25rem'
|
||||
},
|
||||
icon: {
|
||||
size: '1.25rem',
|
||||
|
|
Loading…
Reference in New Issue