Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(ui): make sure activity filter label doesn't wrap on two lines
Browse files Browse the repository at this point in the history
address "Unasked newlines" in  #3046
  • Loading branch information
bolatovumar committed Oct 24, 2019
1 parent eab44b5 commit 71e81ca
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ const messageMapper = key => {

const ActivityFilter = ({ changeFilter, filter, filters, ...rest }) => (
<Flex alignItems="baseline" {...rest}>
<Label fontWeight="light" htmlFor="channel-filter" mr={2}>
<Label
css={{
whiteSpace: 'nowrap',
}}
fontWeight="light"
htmlFor="channel-filter"
mr={2}
>
<FormattedMessage {...messages.actiity_filter_label} />
</Label>
<Dropdown
Expand Down

0 comments on commit 71e81ca

Please # to comment.