Skip to content

Commit

Permalink
fix: #1422 IE bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Cuong Vu committed Jun 1, 2020
1 parent adc4a8a commit 3ab3c70
Show file tree
Hide file tree
Showing 5 changed files with 243 additions and 227 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ exports[`Tile should match snapshot when HIGHTLIGHT false 1`] = `
>
mockHeading
</Component>
<Component />
<Component
className="text-ellipisis"
/>
<div>
City
</div>
Expand Down Expand Up @@ -57,7 +59,9 @@ exports[`Tile should match snapshot when HIGHTLIGHT true 1`] = `
>
mockHeading
</Component>
<Component />
<Component
className="text-ellipisis"
/>
<div>
City
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/elements/src/components/Tile/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const Tile: React.FC<TileProps> = ({
) : null}
<div className="media-content">
<H4 className="text-ellipisis">{heading}</H4>
<SubTitleH6>{subHeading}</SubTitleH6>
<SubTitleH6 className="text-ellipisis">{subHeading}</SubTitleH6>
{children}
</div>
{menu && <div className="media-right">{menu}</div>}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,9 +284,11 @@ exports[`InstalledApps should match a snapshot when LOADING false 1`] = `
test
</h4>
</Component>
<Component>
<Component
className="text-ellipisis"
>
<h6
className="subtitle is-6 "
className="subtitle is-6 text-ellipisis "
id=""
>
Pete's Proptech World Ltd
Expand Down Expand Up @@ -391,9 +393,11 @@ exports[`InstalledApps should match a snapshot when LOADING false 1`] = `
asd
</h4>
</Component>
<Component>
<Component
className="text-ellipisis"
>
<h6
className="subtitle is-6 "
className="subtitle is-6 text-ellipisis "
id=""
>
Pete's Proptech World Ltd
Expand Down
Loading

0 comments on commit 3ab3c70

Please sign in to comment.