Skip to content
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

fix: Dropdown bug #461

Merged
merged 3 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "writer"
version = "0.6.0"
version = "0.6.1"
description = "An open-source, Python framework for building feature-rich apps that are fully integrated with the Writer platform."
authors = ["Writer, Inc."]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/ui/src/core_components/input/CoreDropdownInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class="CoreDropdownInput"
>
<WdsDropdownInput
:value="formValue"
v-model="formValue"
@input="
($event) =>
handleInput(
Expand Down
1 change: 0 additions & 1 deletion src/writer/command_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ def main():
args.path) if args.path else None
host = args.host if args.host else None
api_key = args.api_key if args.api_key else None
print(args.env)

_perform_checks(command, absolute_app_path, host, enable_remote_edit, api_key)
api_key = _get_api_key(command, api_key)
Expand Down
Loading