작업 이력 통계 위젯 추가

백스페이스 안먹는 오류 수정
그리드 컴포넌트 수정
등등
This commit is contained in:
leeheejin
2025-10-20 14:07:08 +09:00
parent 2b7519519a
commit 5b503edfa8
19 changed files with 1447 additions and 2 deletions

View File

@@ -208,6 +208,10 @@ ORDER BY 하위부서수 DESC`,
<Textarea
value={query}
onChange={(e) => setQuery(e.target.value)}
onKeyDown={(e) => {
// 모든 키보드 이벤트를 textarea 내부에서만 처리
e.stopPropagation();
}}
placeholder="SELECT * FROM your_table WHERE condition = 'value';"
className="h-40 resize-none font-mono text-sm"
/>