Add hint in server operators buffer header
This commit is contained in:
parent
33c3cf3278
commit
483f0c65b1
2 changed files with 4 additions and 0 deletions
|
@ -146,6 +146,9 @@ export default function BufferHeader(props) {
|
|||
if (props.user.account) {
|
||||
details.push(`authenticated as ${props.user.account}`);
|
||||
}
|
||||
if (props.user.operator) {
|
||||
details.push("server operator");
|
||||
}
|
||||
details = details.length > 0 ? `(${details.join(", ")})` : null;
|
||||
|
||||
description = html`<${NickStatus} status=${status}/> ${realname} ${details}`;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue