-
Notifications
You must be signed in to change notification settings - Fork 278
feat(ui5-date-picker): normalize display value only on change #12425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
🚀 Deployed on https://pr-12425--ui5-webcomponents-preview.netlify.app |
lastDateString = this._getValueStringFromTimestamp((this._exctractDisplayTimestamp(values[1]) as number) * 1000); | ||
|
||
if (!firstDateString && !lastDateString) { | ||
if (!firstDateString || !lastDateString) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are we sure we want that? as here we exclude the option to have 1 value? Have you checked how the selection works after this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in 835090f
Normalize display value only on change event.