Skip to content

Commit

Permalink
Field editor input width should be 100% (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
masenf committed May 31, 2024
1 parent 704e1c0 commit 5dfde37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion form-designer/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*.db
*.py[cod]
.web
__pycache__/
__pycache__/
2 changes: 2 additions & 0 deletions form-designer/form_designer/components/field_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,9 @@ def field_editor_input(key: str):
name=key,
value=getattr(FieldEditorState.field, key),
on_change=lambda v: FieldEditorState.set_field(key, v),
width="100%",
),
width="100%",
)


Expand Down

0 comments on commit 5dfde37

Please sign in to comment.