From 869f4e78369128d84377732734c1b89d06112e10 Mon Sep 17 00:00:00 2001 From: Florian Adonis Date: Thu, 21 Mar 2019 16:06:04 +0100 Subject: [PATCH] fix: add gender other to gender selectors (#3524) docs(mixed): add gender other to gender selectors --- .../collections/Form/Shorthand/FormExampleFieldControl.js | 1 + .../collections/Form/Shorthand/FormExampleFieldControlId.js | 1 + .../Form/Shorthand/FormExampleSubcomponentControl.js | 1 + .../examples/collections/Form/States/FormExampleFieldError.js | 1 + .../collections/Table/Variations/TableExampleColumnCount.js | 2 +- .../collections/Table/Variations/TableExampleSortable.js | 2 +- 6 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControl.js b/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControl.js index 805655168b..fa4b38db83 100644 --- a/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControl.js +++ b/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControl.js @@ -4,6 +4,7 @@ import { Button, Checkbox, Form, Input, Radio, Select, TextArea } from 'semantic const options = [ { key: 'm', text: 'Male', value: 'male' }, { key: 'f', text: 'Female', value: 'female' }, + { key: 'o', text: 'Other', value: 'other' }, ] class FormExampleFieldControl extends Component { diff --git a/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControlId.js b/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControlId.js index 8a76cae0c6..7fca98f026 100644 --- a/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControlId.js +++ b/docs/src/examples/collections/Form/Shorthand/FormExampleFieldControlId.js @@ -4,6 +4,7 @@ import { Form, Input, TextArea, Button, Select } from 'semantic-ui-react' const genderOptions = [ { key: 'm', text: 'Male', value: 'male' }, { key: 'f', text: 'Female', value: 'female' }, + { key: 'o', text: 'Other', value: 'other' }, ] const FormExampleFieldControlId = () => ( diff --git a/docs/src/examples/collections/Form/Shorthand/FormExampleSubcomponentControl.js b/docs/src/examples/collections/Form/Shorthand/FormExampleSubcomponentControl.js index fee77dbd6c..6145ab6743 100644 --- a/docs/src/examples/collections/Form/Shorthand/FormExampleSubcomponentControl.js +++ b/docs/src/examples/collections/Form/Shorthand/FormExampleSubcomponentControl.js @@ -4,6 +4,7 @@ import { Form } from 'semantic-ui-react' const options = [ { key: 'm', text: 'Male', value: 'male' }, { key: 'f', text: 'Female', value: 'female' }, + { key: 'o', text: 'Other', value: 'other' }, ] class FormExampleSubcomponentControl extends Component { diff --git a/docs/src/examples/collections/Form/States/FormExampleFieldError.js b/docs/src/examples/collections/Form/States/FormExampleFieldError.js index 76bd354a4e..7e78687ff3 100644 --- a/docs/src/examples/collections/Form/States/FormExampleFieldError.js +++ b/docs/src/examples/collections/Form/States/FormExampleFieldError.js @@ -4,6 +4,7 @@ import { Form } from 'semantic-ui-react' const options = [ { key: 'm', text: 'Male', value: 'male' }, { key: 'f', text: 'Female', value: 'female' }, + { key: 'o', text: 'Other', value: 'other' }, ] const FormExampleFieldError = () => ( diff --git a/docs/src/examples/collections/Table/Variations/TableExampleColumnCount.js b/docs/src/examples/collections/Table/Variations/TableExampleColumnCount.js index 9f29eb39d2..0aa41e7129 100644 --- a/docs/src/examples/collections/Table/Variations/TableExampleColumnCount.js +++ b/docs/src/examples/collections/Table/Variations/TableExampleColumnCount.js @@ -32,7 +32,7 @@ const TableExampleColumnCount = () => ( Jill Denied 22 - Female + Other None diff --git a/docs/src/examples/collections/Table/Variations/TableExampleSortable.js b/docs/src/examples/collections/Table/Variations/TableExampleSortable.js index 424742324c..487bf5b15a 100644 --- a/docs/src/examples/collections/Table/Variations/TableExampleSortable.js +++ b/docs/src/examples/collections/Table/Variations/TableExampleSortable.js @@ -5,7 +5,7 @@ import { Table } from 'semantic-ui-react' const tableData = [ { name: 'John', age: 15, gender: 'Male' }, { name: 'Amber', age: 40, gender: 'Female' }, - { name: 'Leslie', age: 25, gender: 'Female' }, + { name: 'Leslie', age: 25, gender: 'Other' }, { name: 'Ben', age: 70, gender: 'Male' }, ]