feat(ui): link sessions to chat page (#471) — thanks @HazAT
This commit is contained in:
@@ -33,6 +33,7 @@
|
||||
- Hooks: allow per-hook model overrides for webhook/Gmail runs (e.g. GPT 5 Mini).
|
||||
- Control UI: logs tab opens at the newest entries (bottom).
|
||||
- Control UI: add Docs link, remove chat composer divider, and add New session button.
|
||||
- Control UI: link sessions list to chat view. (#471) — thanks @HazAT
|
||||
- Control UI: queue outgoing chat messages, add Enter-to-send, and show queued items. (#527) — thanks @YuriNachos
|
||||
- Telegram: retry long-polling conflicts with backoff to avoid fatal exits.
|
||||
- Telegram: fix grammY fetch type mismatch when injecting `fetch`. (#512) — thanks @YuriNachos
|
||||
|
||||
@@ -825,14 +825,12 @@ export class ClawdbotApp extends LitElement {
|
||||
const tokenRaw = params.get("token");
|
||||
const passwordRaw = params.get("password");
|
||||
const sessionRaw = params.get("session");
|
||||
let changed = false;
|
||||
let shouldCleanUrl = false;
|
||||
|
||||
if (tokenRaw != null) {
|
||||
const token = tokenRaw.trim();
|
||||
if (token && !this.settings.token) {
|
||||
this.applySettings({ ...this.settings, token });
|
||||
changed = true;
|
||||
}
|
||||
params.delete("token");
|
||||
shouldCleanUrl = true;
|
||||
@@ -842,7 +840,6 @@ export class ClawdbotApp extends LitElement {
|
||||
const password = passwordRaw.trim();
|
||||
if (password) {
|
||||
this.password = password;
|
||||
changed = true;
|
||||
}
|
||||
params.delete("password");
|
||||
shouldCleanUrl = true;
|
||||
@@ -852,7 +849,6 @@ export class ClawdbotApp extends LitElement {
|
||||
const session = sessionRaw.trim();
|
||||
if (session) {
|
||||
this.sessionKey = session;
|
||||
changed = true;
|
||||
}
|
||||
params.delete("session");
|
||||
shouldCleanUrl = true;
|
||||
|
||||
Reference in New Issue
Block a user