Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
[MM-25818] - Fix styling for archived icons (#5777)
Browse files Browse the repository at this point in the history
* Fix styling for archived icons

* Update snapshots

Co-authored-by: Nevyana Angelova <nevyangelova@Nevyanas-MacBook-Pro-2.local>
  • Loading branch information
nevyangelova and Nevyana Angelova authored Jun 24, 2020
1 parent 90d0647 commit 9d893c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ exports[`components/ChannelInfoModal should match snapshot 1`] = `
/>
<strong>
<ArchiveIcon
className="icon icon__archive"
className="icon icon__archive svg-text-color"
/>
</strong>
</ModalTitle>
Expand Down Expand Up @@ -136,7 +136,7 @@ exports[`components/ChannelInfoModal should match snapshot with channel props 1`
/>
<strong>
<ArchiveIcon
className="icon icon__archive"
className="icon icon__archive svg-text-color"
/>
</strong>
</ModalTitle>
Expand Down
2 changes: 1 addition & 1 deletion components/channel_info_modal/channel_info_modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default class ChannelInfoModal extends React.PureComponent {

if (channelIsArchived) {
channelIcon = (
<ArchiveIcon className='icon icon__archive'/>
<ArchiveIcon className='icon icon__archive svg-text-color'/>
);
} else if (channel.type === 'O') {
channelIcon = (
Expand Down

0 comments on commit 9d893c4

Please sign in to comment.