From 8719235cfd16a389c8ad52ddfe77a4549ce83ee2 Mon Sep 17 00:00:00 2001 From: Kelv Date: Fri, 10 Jan 2025 12:59:56 +0800 Subject: [PATCH] DEV: update deprecated icon name archive to box-archive in chat plugin (#30687) --- .../chat/assets/javascripts/discourse/models/chat-channel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chat/assets/javascripts/discourse/models/chat-channel.js b/plugins/chat/assets/javascripts/discourse/models/chat-channel.js index 4f32e8af9f6..0e92bf07bc5 100644 --- a/plugins/chat/assets/javascripts/discourse/models/chat-channel.js +++ b/plugins/chat/assets/javascripts/discourse/models/chat-channel.js @@ -36,7 +36,7 @@ export function channelStatusIcon(channelStatus) { case CHANNEL_STATUSES.readOnly: return "comment-slash"; case CHANNEL_STATUSES.archived: - return "archive"; + return "box-archive"; } }