Skip to content

Commit

Permalink
Cleared the error of testin in Semantic-Org#4427
Browse files Browse the repository at this point in the history
  • Loading branch information
sathiyaIbe committed May 24, 2023
1 parent 5f73234 commit 4400b7f
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions docs/src/components/CarbonAd/CarbonAdNative.js
Expand Up @@ -125,14 +125,15 @@ class CarbonAdNative extends PureComponent {
/>

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

{/* Pixel */}
{ad.pixel &&
ad.pixel
.split('||')
.map((pixel, i) => (
<img alt="Ad"
<img
alt="Ad"
key={i}
src={`${pixel.replace('[timestamp]', ad.timestamp)}`}
style={{ display: 'none' }}
Expand Down
Expand Up @@ -35,7 +35,7 @@ export default class MenuExamplePointing extends Component {
</Menu>

<Segment>
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
</Segment>
</div>
)
Expand Down
Expand Up @@ -37,7 +37,7 @@ export default class MenuExampleSecondaryPointing extends Component {
</Menu>

<Segment>
<img alt="Wireframe" src='/images/wireframe/media-paragraph.png' />
<img alt="Wireframe" src='/images/wireframe/media-paragraph.png' />
</Segment>
</div>
)
Expand Down
Expand Up @@ -34,7 +34,7 @@ export default class MenuExampleTabularOnTop extends Component {
</Menu>

<Segment attached='bottom'>
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
</Segment>
</div>
)
Expand Down
Expand Up @@ -5,7 +5,7 @@ const ButtonExampleVerticallyAttached = () => (
<div>
<Button attached='top'>Top</Button>
<Segment attached>
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
<img alt="Wireframe" src='/images/wireframe/paragraph.png' />
</Segment>
<Button attached='bottom'>Bottom</Button>
</div>
Expand Down
Expand Up @@ -14,7 +14,7 @@ const LabelExampleImage = () => (
<Label.Detail>Friend</Label.Detail>
</Label>
<Label as='a' color='yellow' image>
<img alt="avatar" src='/images/avatar/small/christian.jpg' />
<img alt="avatar" src='/images/avatar/small/christian.jpg' />
Christian
<Label.Detail>Co-worker</Label.Detail>
</Label>
Expand Down
Expand Up @@ -10,7 +10,7 @@ const LabelExampleBasic = () => (
Pointing
</Label>
<Label as='a' basic image>
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
Elliot
</Label>
<Label as='a' basic color='red' pointing>
Expand Down
Expand Up @@ -5,7 +5,7 @@ const FeedExampleImageLabel = () => (
<Feed>
<Feed.Event>
<Feed.Label>
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
<img alt="avatar" src='/images/avatar/small/elliot.jpg' />
</Feed.Label>
<Feed.Content>
You added Elliot Fu to the group <a>Coworkers</a>
Expand Down
Expand Up @@ -44,7 +44,7 @@ const FeedExampleSizeLarge = () => (

<Feed.Extra images>
<a>
<img alt="Wireframe" src='/images/wireframe/image.png' />
<img alt="Wireframe" src='/images/wireframe/image.png' />
</a>
<a>
<img alt="Wireframe" src='/images/wireframe/image.png' />
Expand Down
2 changes: 1 addition & 1 deletion docs/src/layouts/ResponsiveLayout.js
Expand Up @@ -558,7 +558,7 @@ const ResponsiveLayout = () => (
A description which may flow for several lines and give context to the content.
</Item.Description>
<Item.Extra>
<Image avatar circular alt="Wireframe" src='/images/wireframe/square-image.png' />
<Image avatar circular alt="Wireframe" src='/images/wireframe/square-image.png' />
Username
</Item.Extra>
</Item.Content>
Expand Down

0 comments on commit 4400b7f

Please sign in to comment.