We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5efd723 commit 26079a8Copy full SHA for 26079a8
1 file changed
fastapi_forge/frontend/components/model_row.py
@@ -37,7 +37,6 @@ def _build(self) -> None:
37
self.name_label.bind_visibility_from(self, "is_editing", lambda x: not x)
38
39
with ui.row().classes("gap-2"):
40
- # Use click.stop to prevent event bubbling
41
self.edit_button = (
42
ui.button(
43
icon="edit",
@@ -59,8 +58,6 @@ def _build(self) -> None:
59
58
).on("click.stop", lambda: state.delete_model(self.model))
60
61
def _toggle_edit(self) -> None:
62
- print("editing")
63
-
64
self.is_editing = not self.is_editing
65
66
def _save_model(self) -> None:
0 commit comments