Skip to content

Commit

Permalink
chore: date input fix
Browse files Browse the repository at this point in the history
  • Loading branch information
raaymax committed Mar 4, 2024
1 parent 4dbfb26 commit 2dd527c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion alfred/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ def build_poetry():
if os.path.isdir(directory):
shutil.rmtree(directory)

alfred.run("poetry build")
alfred.run("poetry build")
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"test": "npm run -w streamsync-e2e test",
"test:ci": "npm run -w streamsync-e2e test:ci",
"lint": "npm run -w streamsync-ui lint",
"lint:ci": "npm run -w streamsync-ui lint:ci"
"lint:ci": "npm run -w streamsync-ui lint:ci",
"dev": "npm run -w streamsync-ui dev"
}
}
4 changes: 4 additions & 0 deletions ui/src/core_components/input/CoreDateInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ const { formValue, handleInput } = useFormValueBroker(ss, instancePath, rootEl);
width: fit-content;
}
.CoreDateInput.beingEdited:not(.selected) input {
pointer-events: none;
}
label {
display: block;
margin-bottom: 8px;
Expand Down

0 comments on commit 2dd527c

Please sign in to comment.