csr tangled client in solid-js
15

Configure Feed

Select the types of activity you want to include in your feed.

dont focus search bar if already focused on another text input

dawn (May 30, 2026, 7:09 AM +0300) f68a1144 b33aaf62

+5
+5
src/layout.tsx
··· 285 285 const handler = (e: KeyboardEvent) => { 286 286 if (e.ctrlKey || e.metaKey) return; 287 287 if (e.key === "/") { 288 + const active = document.activeElement; 289 + if (active && (active.tagName === 'INPUT' || active.tagName === 'TEXTAREA' || (active as HTMLElement).isContentEditable)) { 290 + return; 291 + } 292 + 288 293 e.preventDefault(); 289 294 inputRef?.focus(); 290 295 } else if (e.key === "Escape") {