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

Commit 7957796

Browse files
authored
DEV: update all suffix alt icon names (#1075)
1 parent 890b85b commit 7957796

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

app/models/reviewable_ai_chat_message.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def post
3535
def build_actions(actions, guardian, args)
3636
return unless pending?
3737

38-
return build_action(actions, :ignore, icon: "external-link-alt") if chat_message.blank?
38+
return build_action(actions, :ignore, icon: "up-right-from-square") if chat_message.blank?
3939

4040
agree =
4141
actions.add_bundle("#{id}-agree", icon: "thumbs-up", label: "reviewables.actions.agree.title")
@@ -67,7 +67,7 @@ def build_actions(actions, guardian, args)
6767
)
6868
end
6969

70-
build_action(actions, :ignore, icon: "external-link-alt")
70+
build_action(actions, :ignore, icon: "up-right-from-square")
7171

7272
build_action(actions, :delete_and_agree, icon: "far-trash-can") unless chat_message.deleted_at?
7373
end

app/models/reviewable_ai_post.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ def build_actions(actions, guardian, args)
6161
icon: "far-trash-can",
6262
label: "reviewables.actions.delete.title",
6363
)
64-
build_action(actions, :delete_and_ignore, icon: "external-link-alt", bundle: delete)
64+
build_action(actions, :delete_and_ignore, icon: "up-right-from-square", bundle: delete)
6565
if post.reply_count > 0
6666
build_action(
6767
actions,
6868
:delete_and_ignore_replies,
69-
icon: "external-link-alt",
69+
icon: "up-right-from-square",
7070
confirm: true,
7171
bundle: delete,
7272
)
@@ -76,7 +76,7 @@ def build_actions(actions, guardian, args)
7676
build_action(
7777
actions,
7878
:delete_and_agree_replies,
79-
icon: "external-link-alt",
79+
icon: "up-right-from-square",
8080
bundle: delete,
8181
confirm: true,
8282
)
@@ -85,7 +85,7 @@ def build_actions(actions, guardian, args)
8585

8686
delete_user_actions(actions) if guardian.can_delete_user?(target_created_by)
8787

88-
build_action(actions, :ignore, icon: "external-link-alt")
88+
build_action(actions, :ignore, icon: "up-right-from-square")
8989
end
9090

9191
def perform_agree_and_hide(performed_by, args)

assets/javascripts/discourse/components/ai-llm-quota-editor.gjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export default class AiLlmQuotaEditor extends Component {
149149
</td>
150150
<td class="ai-llm-quotas__cell ai-llm-quotas__cell--actions">
151151
<DButton
152-
@icon="trash-alt"
152+
@icon="trash-can"
153153
class="btn-danger ai-llm-quotas__delete-btn"
154154
@action={{fn this.deleteQuota quota}}
155155
/>

assets/javascripts/initializers/ai-bot-replies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ function initializeShareTopicButton(api) {
227227

228228
api.registerTopicFooterButton({
229229
id: "share-ai-conversation",
230-
icon: "share-alt",
230+
icon: "share-nodes",
231231
label: "discourse_ai.ai_bot.share_ai_conversation.name",
232232
title: "discourse_ai.ai_bot.share_ai_conversation.title",
233233
action() {

0 commit comments

Comments
 (0)