1
Fork 0
tildes-reextended/source/options/components/anonymize-usernames.ts

17 lines
448 B
TypeScript
Raw Normal View History

import {html} from 'htm/preact';
import {Setting, SettingProps} from './index.js';
export function AnonymizeUsernamesSetting(props: SettingProps): TRXComponent {
return html`
<${Setting} ...${props}>
<p class="info">
Anonymizes usernames by replacing them with "Anonymous #".
<br />
2022-02-25 00:06:24 +00:00
Note that User Labels and Username Colors will still be applied to any
usernames as normal.
</p>
<//>
`;
}