File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,10 @@ export default class ScheduleExceptionForm extends Component {
71
71
{ EXEMPLARS . map ( exemplar => {
72
72
return (
73
73
< option value = { exemplar } key = { exemplar } >
74
- { toSentenceCase ( exemplar ) }
74
+ { exemplar === 'SWAP'
75
+ ? 'Swap, add, or remove'
76
+ : toSentenceCase ( exemplar )
77
+ }
75
78
</ option >
76
79
)
77
80
} ) }
@@ -110,7 +113,7 @@ export default class ScheduleExceptionForm extends Component {
110
113
? < FormGroup
111
114
controlId = { `custom` }
112
115
className = { `col-xs-12` } >
113
- < ControlLabel > Select calendars to add:</ ControlLabel >
116
+ < ControlLabel > Select calendars to add (optional) :</ ControlLabel >
114
117
< Select
115
118
placeholder = 'Select calendar...'
116
119
clearable
@@ -132,7 +135,7 @@ export default class ScheduleExceptionForm extends Component {
132
135
} )
133
136
: [ ]
134
137
} />
135
- < ControlLabel > Select calendars to remove:</ ControlLabel >
138
+ < ControlLabel > Select calendars to remove (optional) :</ ControlLabel >
136
139
< Select
137
140
placeholder = 'Select calendar...'
138
141
clearable
You can’t perform that action at this time.
0 commit comments