fix(model-routes): use overridden model name for provider targets

This commit is contained in:
lizw2
2026-05-27 15:45:28 +08:00
committed by jialin
parent 96e6ddfe8a
commit 45e0ad9e93
5 changed files with 70 additions and 73 deletions
@@ -78,7 +78,7 @@ const RouteItem: React.FC<TargetItemProps> = ({
<AutoTooltip ghost minWidth={20}>
{data.model_id
? modelList?.find((m) => m.value === data.model_id)?.label
: data.provider_model_name}
: data.overridden_model_name}
</AutoTooltip>
</span>
);