Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: #1422 IE bugs fix client portal #1471

Merged
merged 1 commit into from
Jun 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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