Skip to content

Commit

Permalink
fix: alias name on super admin
Browse files Browse the repository at this point in the history
  • Loading branch information
comoser committed Sep 27, 2023
1 parent 41e4372 commit 7e82d0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web-ui/app/admin/manage/ai-models/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default async function AdminAiModels() {
{aiModels.map((aiModel) => (
<TableRow key={aiModel.id}>
<TableCell>{aiModel.chatLlmName}</TableCell>
<TableCell>{aiModel.chatLlmName ?? 'N/A'}</TableCell>
<TableCell>{aiModel.alias ?? 'N/A'}</TableCell>
<TableCell>{aiModel.modelName}</TableCell>
<TableCell>{aiModel.temperature}</TableCell>
<TableCell>
Expand Down

0 comments on commit 7e82d0a

Please sign in to comment.