feat: show page titles on agent and topic pages

This commit moves the actions bar out of the default template and into the
individual pages so that they can display their titles at the top. this
commit also has pages set the meta title so tabs are labeled nicely.
This commit is contained in:
Zoe
2026-02-24 16:33:32 +00:00
parent a22b6c07d1
commit ab57af1f23
7 changed files with 108 additions and 51 deletions
+4 -2
View File
@@ -111,8 +111,10 @@ const handleWindowKeyDown = async (event: KeyboardEvent) => {
return;
}
// redirect all standard keyboard input to the input field
inputRef.value?.focus();
if (document.activeElement === document.body) {
// redirect all standard keyboard input to the input field
inputRef.value?.focus();
}
};
watch(inputValue, async () => {