mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-24 15:35:11 +00:00
Renamed otherOptionDefault -> textInputDefault
This commit is contained in:
parent
767ce54d8f
commit
5b70fa3557
1 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ const settings = definePluginSettings({
|
|||
default: [],
|
||||
component: ReasonsComponent,
|
||||
},
|
||||
otherOptionDefault: {
|
||||
textInputDefault: {
|
||||
type: OptionType.BOOLEAN,
|
||||
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() {
|
||||
return settings.store.otherOptionDefault ? 1 : 0;
|
||||
return settings.store.textInputDefault ? 1 : 0;
|
||||
},
|
||||
settings,
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue