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

Commit e0104b1

Browse files
committed
merge fix
1 parent 584420b commit e0104b1

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

assets/javascripts/discourse/components/ai-features-list.gjs

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,10 @@ export default class AiFeaturesList extends Component {
168168
>
169169
<DButton
170170
class="btn-flat ai-feature-card__persona-button btn-text"
171-
@translatedLabel={{concat persona.name (unless (isLastItem index) ", ")}}
171+
@translatedLabel={{concat
172+
persona.name
173+
(unless (isLastItem index) ", ")
174+
}}
172175
@route="adminPlugins.show.discourse-ai-personas.edit"
173176
@routeModels={{persona.id}}
174177
/>
@@ -196,7 +199,10 @@ export default class AiFeaturesList extends Component {
196199
>
197200
<DButton
198201
class="btn-flat ai-feature-card__llm-button"
199-
@translatedLabel={{concat llm.name (unless (isLastItem index) ", ")}}
202+
@translatedLabel={{concat
203+
llm.name
204+
(unless (isLastItem index) ", ")
205+
}}
200206
@route="adminPlugins.show.discourse-ai-llms.edit"
201207
@routeModels={{llm.id}}
202208
/>
@@ -223,8 +229,9 @@ export default class AiFeaturesList extends Component {
223229
<span class="ai-feature-card__label">
224230
{{i18n "discourse_ai.features.no_groups"}}
225231
</span>
226-
{{/if}}
227-
</div>
232+
{{/if}}
233+
</div>
234+
{{/if}}
228235
{{/unless}}
229236
</div>
230237
</div>

0 commit comments

Comments
 (0)