Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.

Commit be05e28

Browse files
UX: Add table style for LLM list (#963)
Followup 2f7895b, I forgot to commit this minor change
1 parent 2f7895b commit be05e28

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

assets/javascripts/discourse/components/ai-llms-list-editor.gjs

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,14 @@ export default class AiLlmsListEditor extends Component {
141141
class="ai-llm-list__row d-admin-row__content"
142142
>
143143
<td class="d-admin-row__overview">
144-
<h3>{{llm.display_name}}</h3>
145-
<p>
144+
<div class="ai-llm-list__name">
145+
<strong>
146+
{{llm.display_name}}
147+
</strong>
148+
</div>
149+
<div class="ai-llm-list__description">
146150
{{this.modelDescription llm}}
147-
</p>
151+
</div>
148152
{{#if llm.used_by}}
149153
<ul class="ai-llm-list-editor__usages">
150154
{{#each llm.used_by as |usage|}}

0 commit comments

Comments
 (0)