support displaying of echo chamber status visibility

This commit is contained in:
Henry Jameson 2025-06-18 17:49:40 +03:00
commit 4c3626574d
2 changed files with 5 additions and 0 deletions

View file

@ -24,6 +24,7 @@ import {
faLock,
faLockOpen,
faGlobe,
faIgloo,
faTimes,
faRetweet,
faReply,
@ -43,6 +44,7 @@ import {
library.add(
faEnvelope,
faGlobe,
faIgloo,
faLock,
faLockOpen,
faTimes,
@ -484,6 +486,8 @@ const Status = {
return 'lock-open'
case 'direct':
return 'envelope'
case 'local':
return 'igloo'
default:
return 'globe'
}