mirror of
https://github.com/Vendicated/Vencord.git
synced 2025-02-24 23:38:32 +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: [],
|
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,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue