{
try {
await this.handleRename(newName);
} catch (error) {
// Error is already handled in handleRename
logger.debug('Rename error caught in onSave', { error });
}
}}
>
${
this.session.status === 'running' && isAIAssistantSession(this.session)
? html`
`
: ''
}
${
this.session.status === 'running' || this.session.status === 'exited'
? html`
`
: ''
}
${this.getActivityStatusText()}
${
this.session.status === 'running' &&
this.isActive &&
!this.session.activityStatus?.specificStatus
? html`●`
: ''
}
${
this.session.pid
? html`
PID: ${this.session.pid}
`
: ''
}