Spaces:
Running
Running
fix: use UI-provided liveboard name instead of Supabase-reloaded value
Browse filesload_gradio_settings() was being called at deploy time, overwriting the
liveboard name the user typed in the UI with whatever was saved in the DB.
Now self.settings (which has the live UI value) takes priority.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- chat_interface.py +1 -1
chat_interface.py
CHANGED
|
@@ -3724,7 +3724,7 @@ This chat will update when complete."""
|
|
| 3724 |
|
| 3725 |
# Load settings
|
| 3726 |
settings = load_gradio_settings(self._get_effective_user_email())
|
| 3727 |
-
liveboard_name = settings.get('liveboard_name', '')
|
| 3728 |
|
| 3729 |
# Default liveboard name to company name (without .com) if blank
|
| 3730 |
if not liveboard_name:
|
|
|
|
| 3724 |
|
| 3725 |
# Load settings
|
| 3726 |
settings = load_gradio_settings(self._get_effective_user_email())
|
| 3727 |
+
liveboard_name = self.settings.get('liveboard_name', '') or settings.get('liveboard_name', '')
|
| 3728 |
|
| 3729 |
# Default liveboard name to company name (without .com) if blank
|
| 3730 |
if not liveboard_name:
|