(fix) Scinote is freezed at selecting time column in inventory filter [SCI-10278]

This commit is contained in:
Gregor Lasnibat 2024-03-01 11:50:28 +01:00
parent ca26f60f7a
commit 3871e4e1a4

View file

@ -82,6 +82,9 @@ export default {
}
},
updateDate(date) {
if (this.date && date && (this.date.setSeconds(0, 0) === date.setSeconds(0, 0))) {
return;
}
this.date = date;
this.updateValue();
},