Skip to content

Commit

Permalink
fix: fixed date select when range is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Mar 2, 2022
1 parent b10166c commit a527d84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/InputTimeInterval.vue
Expand Up @@ -92,7 +92,7 @@ export default {
valueChanged() {
if (
this.mode == 'last_duration' ||
(!emptyDaterange && !this.invalidDaterange && !this.daterangeTooLong)
(!this.emptyDaterange && !this.invalidDaterange && !this.daterangeTooLong)
) {
this.$emit('input', this.value);
}
Expand Down

1 comment on commit a527d84

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here are screenshots of this commit:

Screenshots using aw-server v0.11.0 (click to expand)

Screenshots using aw-server-rust master (click to expand)

Screenshots using aw-server-rust v0.11.0 (click to expand)

CML watermark

Please sign in to comment.