fix(webui): fix unexpected expansion of all rows in tool table (#4366)

Corrected the property from `item-key` to `item-value` to align with
Vuetify 3 API. This ensures each row has a unique identifier for
the expansion state.
This commit is contained in:
letr
2026-01-11 14:27:07 +08:00
committed by GitHub
parent 9a91f2fb11
commit c1102f2f5c
@@ -32,7 +32,7 @@ const parameterEntries = (tool: ToolItem) => Object.entries(tool.parameters?.pro
<v-data-table
:headers="toolHeaders"
:items="items"
item-key="name"
item-value="name"
hover
show-expand
class="tool-table"