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