분할패널 라벨검색 가능하게 수정

This commit is contained in:
kjs 2025-12-16 15:32:43 +09:00
parent 963e0c2d24
commit 3a55ea3b64
1 changed files with 3 additions and 3 deletions

View File

@ -1522,9 +1522,9 @@ export const SplitPanelLayoutConfigPanel: React.FC<SplitPanelLayoutConfigPanelPr
{availableRightTables.map((table) => (
<CommandItem
key={table.tableName}
value={table.tableName}
onSelect={(value) => {
updateRightPanel({ tableName: value });
value={`${table.displayName || ""} ${table.tableName}`}
onSelect={() => {
updateRightPanel({ tableName: table.tableName });
setRightTableOpen(false);
}}
>