Skip to content

Commit 4400b7f

Browse files
committed
Cleared the error of testin in Semantic-Org#4427
1 parent 5f73234 commit 4400b7f

File tree

10 files changed

+12
-11
lines changed

10 files changed

+12
-11
lines changed

docs/src/components/CarbonAd/CarbonAdNative.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,15 @@ class CarbonAdNative extends PureComponent {
125125
/>
126126

127127
{/* Impression */}
128-
<img alt="Ad" src={`${ad.statimp}`} style={{ display: 'none' }} />
128+
<img alt="Ad" src={`${ad.statimp}`} style={{ display: 'none' }} />
129129

130130
{/* Pixel */}
131131
{ad.pixel &&
132132
ad.pixel
133133
.split('||')
134134
.map((pixel, i) => (
135-
<img alt="Ad"
135+
<img
136+
alt="Ad"
136137
key={i}
137138
src={`${pixel.replace('[timestamp]', ad.timestamp)}`}
138139
style={{ display: 'none' }}

docs/src/examples/collections/Menu/Types/MenuExamplePointing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default class MenuExamplePointing extends Component {
3535
</Menu>
3636

3737
<Segment>
38-
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
38+
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
3939
</Segment>
4040
</div>
4141
)

docs/src/examples/collections/Menu/Types/MenuExampleSecondaryPointing.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default class MenuExampleSecondaryPointing extends Component {
3737
</Menu>
3838

3939
<Segment>
40-
<img alt="Wireframe" src='/images/wireframe/media-paragraph.png' />
40+
<img alt="Wireframe" src='/images/wireframe/media-paragraph.png' />
4141
</Segment>
4242
</div>
4343
)

docs/src/examples/collections/Menu/Types/MenuExampleTabularOnTop.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default class MenuExampleTabularOnTop extends Component {
3434
</Menu>
3535

3636
<Segment attached='bottom'>
37-
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
37+
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
3838
</Segment>
3939
</div>
4040
)

docs/src/examples/elements/Button/Variations/ButtonExampleVerticallyAttached.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const ButtonExampleVerticallyAttached = () => (
55
<div>
66
<Button attached='top'>Top</Button>
77
<Segment attached>
8-
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
8+
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
99
</Segment>
1010
<Button attached='bottom'>Bottom</Button>
1111
</div>

docs/src/examples/elements/Label/Types/LabelExampleImageColored.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const LabelExampleImage = () => (
1414
<Label.Detail>Friend</Label.Detail>
1515
</Label>
1616
<Label as='a' color='yellow' image>
17-
<img alt="avatar" src='/images/avatar/small/christian.jpg' />
17+
<img alt="avatar" src='/images/avatar/small/christian.jpg' />
1818
Christian
1919
<Label.Detail>Co-worker</Label.Detail>
2020
</Label>

docs/src/examples/elements/Label/Variations/LabelExampleBasic.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const LabelExampleBasic = () => (
1010
Pointing
1111
</Label>
1212
<Label as='a' basic image>
13-
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
13+
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
1414
Elliot
1515
</Label>
1616
<Label as='a' basic color='red' pointing>

docs/src/examples/views/Feed/Content/FeedExampleImageLabel.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const FeedExampleImageLabel = () => (
55
<Feed>
66
<Feed.Event>
77
<Feed.Label>
8-
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
8+
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
99
</Feed.Label>
1010
<Feed.Content>
1111
You added Elliot Fu to the group <a>Coworkers</a>

docs/src/examples/views/Feed/Variations/FeedExampleSizeLarge.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const FeedExampleSizeLarge = () => (
4444

4545
<Feed.Extra images>
4646
<a>
47-
<img alt="Wireframe" src='/images/wireframe/image.png' />
47+
<img alt="Wireframe" src='/images/wireframe/image.png' />
4848
</a>
4949
<a>
5050
<img alt="Wireframe" src='/images/wireframe/image.png' />

docs/src/layouts/ResponsiveLayout.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ const ResponsiveLayout = () => (
558558
A description which may flow for several lines and give context to the content.
559559
</Item.Description>
560560
<Item.Extra>
561-
<Image avatar circular alt="Wireframe" src='/images/wireframe/square-image.png' />
561+
<Image avatar circular alt="Wireframe" src='/images/wireframe/square-image.png' />
562562
Username
563563
</Item.Extra>
564564
</Item.Content>

0 commit comments

Comments
 (0)