File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
components/progress-indicator/private Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ class Step extends React.Component {
132
132
{ this . props . step . assistiveText ||
133
133
`${ props . assistiveText . step } ${ props . index + 1 } : ${
134
134
props . step . label
135
- } - ${ status } `}
135
+ } ${ status } `}
136
136
</ span >
137
137
</ a >
138
138
) : (
@@ -166,11 +166,11 @@ class Step extends React.Component {
166
166
const renderIcon = this . props . isCompleted || this . props . isError ;
167
167
let status = '' ;
168
168
if ( this . props . isError ) {
169
- status = this . props . assistiveText . errorStep ;
169
+ status = `- ${ this . props . assistiveText . errorStep } ` ;
170
170
} else if ( this . props . isCompleted ) {
171
- status = this . props . assistiveText . completedStep ;
171
+ status = `- ${ this . props . assistiveText . completedStep } ` ;
172
172
} else if ( this . props . isDisabled ) {
173
- status = this . props . assistiveText . disabledStep ;
173
+ status = `- ${ this . props . assistiveText . disabledStep } ` ;
174
174
}
175
175
176
176
const tooltipProps = {
You can’t perform that action at this time.
0 commit comments