Merge pull request #7180 from lasniscinote/gl_SCI_10278

(fix) Scinote is freezed at selecting time column in inventory filter [SCI-10278]
This commit is contained in:
Martin Artnik 2024-03-01 14:32:42 +01:00 committed by GitHub
commit 8dbdb8e462
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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();
},