Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/models/reviewable_ai_chat_message.rb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def post
def build_actions(actions, guardian, args)
return unless pending?

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

agree =
actions.add_bundle("#{id}-agree", icon: "thumbs-up", label: "reviewables.actions.agree.title")
Expand Down Expand Up @@ -67,7 +67,7 @@ def build_actions(actions, guardian, args)
)
end

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

build_action(actions, :delete_and_agree, icon: "far-trash-can") unless chat_message.deleted_at?
end
Expand Down
8 changes: 4 additions & 4 deletions app/models/reviewable_ai_post.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ def build_actions(actions, guardian, args)
icon: "far-trash-can",
label: "reviewables.actions.delete.title",
)
build_action(actions, :delete_and_ignore, icon: "external-link-alt", bundle: delete)
build_action(actions, :delete_and_ignore, icon: "up-right-from-square", bundle: delete)
if post.reply_count > 0
build_action(
actions,
:delete_and_ignore_replies,
icon: "external-link-alt",
icon: "up-right-from-square",
confirm: true,
bundle: delete,
)
Expand All @@ -76,7 +76,7 @@ def build_actions(actions, guardian, args)
build_action(
actions,
:delete_and_agree_replies,
icon: "external-link-alt",
icon: "up-right-from-square",
bundle: delete,
confirm: true,
)
Expand All @@ -85,7 +85,7 @@ def build_actions(actions, guardian, args)

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

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

def perform_agree_and_hide(performed_by, args)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export default class AiLlmQuotaEditor extends Component {
</td>
<td class="ai-llm-quotas__cell ai-llm-quotas__cell--actions">
<DButton
@icon="trash-alt"
@icon="trash-can"
class="btn-danger ai-llm-quotas__delete-btn"
@action={{fn this.deleteQuota quota}}
/>
Expand Down
2 changes: 1 addition & 1 deletion assets/javascripts/initializers/ai-bot-replies.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function initializeShareTopicButton(api) {

api.registerTopicFooterButton({
id: "share-ai-conversation",
icon: "share-alt",
icon: "share-nodes",
label: "discourse_ai.ai_bot.share_ai_conversation.name",
title: "discourse_ai.ai_bot.share_ai_conversation.title",
action() {
Expand Down
Loading