import {html} from 'htm/preact'; import {Setting, SettingProps} from './index.js'; export function UserLabelsSetting(props: SettingProps): TRXComponent { return html` <${Setting} ...${props}>

Adds a way to create customizable labels to users. Wherever a link to a person's profile is available, a [+] will be put next to it. Clicking on that will bring up a dialog to add a new label and clicking on existing labels will bring up the same dialog to edit them.
Or you can use the dedicated${' '} User Label Editor to add, edit, or remove user labels.

View Customizable Values
`; }