Skip to content

Commit

Permalink
fix: settings button missing (#13)
Browse files Browse the repository at this point in the history
fixed issue with save settings button not appearing
  • Loading branch information
rtuszik authored Sep 5, 2024
1 parent 281a6f9 commit b8873f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,9 +443,9 @@ async def save_settings():
label="Output Folder", value=self.output_folder
).classes("w-full mb-4")
self.folder_input.on("change", self.update_folder_path)
ui.button(
"Save Settings", on_click=save_settings, color="#818b981f"
).classes("mt-4")
ui.button(
"Save Settings", on_click=save_settings, color="#818b981f"
).classes("mt-4")
dialog.open()

async def save_api_key(self):
Expand Down

0 comments on commit b8873f1

Please sign in to comment.