ui: add Connect button to Overview for credential changes#385
Closed
wizaj wants to merge 1 commit intoopenclaw:mainfrom
Closed
ui: add Connect button to Overview for credential changes#385wizaj wants to merge 1 commit intoopenclaw:mainfrom
wizaj wants to merge 1 commit intoopenclaw:mainfrom
Conversation
The Refresh button in the Overview page was confusing - it said 'Reconnect to apply changes' but only refreshed data without reconnecting. This adds a dedicated Connect button that calls state.connect() to reconnect the gateway client with updated credentials (URL, token, or password). Fixes the issue where password authentication couldn't be applied without manually triggering a reconnect via console.
steipete
added a commit
that referenced
this pull request
Jan 8, 2026
Contributor
Author
|
My first ever PR 🥺 honoured! |
dgarson
added a commit
to dgarson/clawdbot
that referenced
this pull request
Feb 9, 2026
* fix: update Claude task URL format to /code/ path Claude web task URLs use the format https://claude.ai/code/session_{id} rather than https://claude.ai/chat/{id}. Updated the base URL in the canonicalizer, builder, and tests accordingly. * more work queue/work-item changes * CRN: preserve case for external task IDs
zooqueen
pushed a commit
to hanzoai/bot
that referenced
this pull request
Mar 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a dedicated Connect button to the Overview page to apply gateway credential changes (URL, token, or password).
Problem
The existing Refresh button was confusing - it displayed the text "Reconnect to apply changes" but only refreshed data without actually reconnecting to the gateway. This made password authentication unusable in the UI, as there was no way to apply the password without manually triggering a reconnect via the browser console.
Solution
state.connect()to reconnect the gateway clientgap: 8pxTesting
Tested with password authentication on tailscale funnel mode:
Files Changed
ui/src/ui/app-render.ts: AddedonConnectcallback that triggersstate.connect()ui/src/ui/views/overview.ts: Added Connect button to UI and updated props typeFixes the password authentication workflow in the control panel.