DEV: update deprecated icon name archive to box-archive in chat plugin (#30687)

This commit is contained in:
Kelv 2025-01-10 12:59:56 +08:00 committed by GitHub
parent b1bae9b785
commit 8719235cfd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@ export function channelStatusIcon(channelStatus) {
case CHANNEL_STATUSES.readOnly: case CHANNEL_STATUSES.readOnly:
return "comment-slash"; return "comment-slash";
case CHANNEL_STATUSES.archived: case CHANNEL_STATUSES.archived:
return "archive"; return "box-archive";
} }
} }