Renamed otherOptionDefault -> textInputDefault

This commit is contained in:
Inbestigator 2024-06-09 16:59:58 -07:00
parent 767ce54d8f
commit 5b70fa3557

View file

@ -61,7 +61,7 @@ const settings = definePluginSettings({
default: [], default: [],
component: ReasonsComponent, component: ReasonsComponent,
}, },
otherOptionDefault: { textInputDefault: {
type: OptionType.BOOLEAN, type: OptionType.BOOLEAN,
description: 'Shows a text input instead of a select menu by default. (Equivalent to clicking the "Other" option)' description: 'Shows a text input instead of a select menu by default. (Equivalent to clicking the "Other" option)'
} }
@ -94,7 +94,7 @@ export default definePlugin({
)); ));
}, },
isOtherDefault() { isOtherDefault() {
return settings.store.otherOptionDefault ? 1 : 0; return settings.store.textInputDefault ? 1 : 0;
}, },
settings, settings,
}); });