Remove custom alphabetical order from standard

This commit is contained in:
Robbie Antenesse 2017-08-24 10:23:51 -06:00 committed by Robbie Antenesse
parent 0472fc177c
commit 37db597b42
1 changed files with 2 additions and 21 deletions

View File

@ -69,27 +69,8 @@ export const EditDictionaryForm = ({
</div> </div>
</div> </div>
<div className='field'> {/* Custom alphabetical order is restricted to paid. */}
<label className='label' htmlFor='editAlphabeticalOrder'>
Alphabetical Order
</label>
<p className='help'>
The custom order for sorting the words in your { specification }. If blank, English alphabetical order will be used.<br />
If the "Case Sensitive" setting is set, include both upper and lower case letters, otherwise, use upper or lower case exclusively.
</p>
<div className='control'>
<textarea className='textarea' id='editAlphabeticalOrder'
placeholder={ `a\nb\nc\nd\n...` }
value={ alphabeticalOrder }
onInput={ (event) => {
editDictionaryModal.setState({
alphabeticalOrder: event.target.value,
hasChanged: event.target.value != editDictionaryModal.props.alphabeticalOrder.join('\n'),
});
}}
/>
</div>
</div>
</div> </div>
); );
} }