mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-20 13:45:54 +00:00
Show loading animation when no session is selected
- Replace static "No session selected" text with animated loading spinner - Use same loading animation style as session connection state - Shows "Waiting for session..." message with spinning indicator - Provides better visual feedback when waiting for session selection 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
e0758d1e8d
commit
85a4811b65
1 changed files with 8 additions and 1 deletions
|
|
@ -894,7 +894,14 @@ export class SessionView extends LitElement {
|
|||
|
||||
render() {
|
||||
if (!this.session) {
|
||||
return html` <div class="p-4 text-vs-muted">No session selected</div> `;
|
||||
return html`
|
||||
<div class="w-full h-full bg-black flex items-center justify-center">
|
||||
<div class="text-vs-text font-mono text-center">
|
||||
<div class="text-2xl mb-2">${this.getLoadingText()}</div>
|
||||
<div class="text-sm text-vs-muted">Waiting for session...</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
}
|
||||
|
||||
return html`
|
||||
|
|
|
|||
Loading…
Reference in a new issue