diff --git a/web/src/pages/Playground/Playground.js b/web/src/pages/Playground/Playground.js index 00a2eded..4f708d26 100644 --- a/web/src/pages/Playground/Playground.js +++ b/web/src/pages/Playground/Playground.js @@ -326,7 +326,12 @@ const Playground = () => { }} value={inputs.group} autoComplete='new-password' - optionList={groups} + optionList={groups.map((group) => ({ + ...group, + label: styleState.isMobile && group.label.length > 18 + ? group.label.substring(0, 18) + '...' + : group.label, + }))} />
模型: