SoftUI.formTypes.tagInput(disabled),
Indicate if the input should be shown as disabled
Array of Strings | or an empty Array.
{ optionId: "allowed_tags", optionName: "Allowed Tags", optionDescription: "Which tags are allowed?", optionType: SoftUI.formTypes.tagInput(false), getActualSet: ({ guild }) => { return allowedTags[guild.id]; }, setNew: ({ guild, newData }) => { allowedTags[guild.id] = newData; return; }, },
Was this page helpful?