v0.9.34 label changes
This commit is contained in:
@@ -137,8 +137,13 @@ function AllGroupsTab({ allUsers, onRefresh }) {
|
||||
color: selected?.id === g.id ? 'var(--primary)' : 'var(--text-primary)',
|
||||
cursor: 'pointer', fontWeight: selected?.id === g.id ? 600 : 400, fontSize: 14, marginBottom: 2,
|
||||
}}>
|
||||
<div>{g.name}</div>
|
||||
<div style={{ fontSize: 11, color: 'var(--text-tertiary)' }}>{g.member_count} member{g.member_count !== 1 ? 's' : ''}</div>
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: 8 }}>
|
||||
<div style={{ width: 26, height: 26, borderRadius: 6, background: 'var(--primary)', display: 'flex', alignItems: 'center', justifyContent: 'center', color: 'white', fontSize: 9, fontWeight: 700, flexShrink: 0 }}>UG</div>
|
||||
<div>
|
||||
<div style={{ fontSize: 13 }}>{g.name}</div>
|
||||
<div style={{ fontSize: 11, color: 'var(--text-tertiary)' }}>{g.member_count} member{g.member_count !== 1 ? 's' : ''}</div>
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
))}
|
||||
{groups.length === 0 && <div style={{ fontSize: 13, color: 'var(--text-tertiary)', padding: '8px 0' }}>No groups yet</div>}
|
||||
|
||||
Reference in New Issue
Block a user