From afcce7a0efca59459c9be85260c93ca755b97170 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 17 Jan 2021 21:49:51 -0800 Subject: [PATCH] fix: Add missing width/height tags to img --- app/components/Sidebar/components/HeaderBlock.js | 7 ++++++- app/components/TeamLogo.js | 6 ++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/app/components/Sidebar/components/HeaderBlock.js b/app/components/Sidebar/components/HeaderBlock.js index d0cd1e12e..1786c2fcf 100644 --- a/app/components/Sidebar/components/HeaderBlock.js +++ b/app/components/Sidebar/components/HeaderBlock.js @@ -16,7 +16,12 @@ const HeaderBlock = React.forwardRef( ({ showDisclosure, teamName, subheading, logoUrl, ...rest }: Props, ref) => { return (
- + {teamName}{" "} diff --git a/app/components/TeamLogo.js b/app/components/TeamLogo.js index 400c7f2f4..ae703ac77 100644 --- a/app/components/TeamLogo.js +++ b/app/components/TeamLogo.js @@ -2,8 +2,10 @@ import styled from "styled-components"; const TeamLogo = styled.img` - width: ${(props) => props.size || "auto"}; - height: ${(props) => props.size || "38px"}; + width: ${(props) => + props.width ? `${props.width}px` : props.size || "auto"}; + height: ${(props) => + props.height ? `${props.height}px` : props.size || "38px"}; border-radius: 4px; background: ${(props) => props.theme.background}; border: 1px solid ${(props) => props.theme.divider};