feat: make display name editable in ModelInfoPanel

This commit is contained in:
Alexander Brown
2026-01-16 20:00:57 -08:00
parent 0289cc8c65
commit cfd03ab282
5 changed files with 32 additions and 8 deletions

View File

@@ -171,6 +171,13 @@ const toggleRightPanel = () => {
}
function handleEscape(event: KeyboardEvent) {
const target = event.target
if (
target instanceof HTMLInputElement ||
target instanceof HTMLTextAreaElement
) {
return
}
if (isRightPanelOpen.value) {
event.stopPropagation()
isRightPanelOpen.value = false