import {html} from 'htm/preact'; import {Setting, SettingProps, TRXComponent} from '../..'; 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.

View Customizable Values
`; }