Better wording for /input arg descriptions

1e6f8c6637b3954b709f11ceca3a514dd3b528fa

Wolfsblvt <wolfsblvt@gmail.com>

1 files changed, +3 -3Ignore whitespace
public/scripts/slash-commands.js+3 -3
@@ -1294,14 +1294,14 @@ export function initDefaultSlashCommands() {
1294 }),1294 }),
1295 SlashCommandNamedArgument.fromProps({1295 SlashCommandNamedArgument.fromProps({
1296 name: 'large',1296 name: 'large',
1297 description: 'show large input field',1297 description: 'popup window will be shown larger in height, with more space for content (input field needs to be sized via \'rows\' argument)',
1298 typeList: [ARGUMENT_TYPE.BOOLEAN],1298 typeList: [ARGUMENT_TYPE.BOOLEAN],
1299 defaultValue: 'off',1299 defaultValue: 'off',
1300 enumList: commonEnumProviders.boolean('onOff')(),1300 enumList: commonEnumProviders.boolean('onOff')(),
1301 }),1301 }),
1302 SlashCommandNamedArgument.fromProps({1302 SlashCommandNamedArgument.fromProps({
1303 name: 'wide',1303 name: 'wide',
1304 description: 'show wide input field',1304 description: 'popup window will be shown wider, with a wider input field',
1305 typeList: [ARGUMENT_TYPE.BOOLEAN],1305 typeList: [ARGUMENT_TYPE.BOOLEAN],
1306 defaultValue: 'off',1306 defaultValue: 'off',
1307 enumList: commonEnumProviders.boolean('onOff')(),1307 enumList: commonEnumProviders.boolean('onOff')(),
@@ -1314,7 +1314,7 @@ export function initDefaultSlashCommands() {
1314 }),1314 }),
1315 SlashCommandNamedArgument.fromProps({1315 SlashCommandNamedArgument.fromProps({
1316 name: 'rows',1316 name: 'rows',
1317 description: 'number of rows for the input field',1317 description: 'number of rows for the input field (lines being displayed)',
1318 typeList: [ARGUMENT_TYPE.NUMBER],1318 typeList: [ARGUMENT_TYPE.NUMBER],
1319 }),1319 }),
1320 SlashCommandNamedArgument.fromProps({1320 SlashCommandNamedArgument.fromProps({