Misc fixes

This commit is contained in:
jeffvli
2022-11-05 03:25:30 -07:00
parent c8da4f8146
commit cee6ff4df5
2 changed files with 4 additions and 4 deletions
@@ -127,6 +127,7 @@ export const LeftControls = () => {
<MetadataStack layout> <MetadataStack layout>
<LineItem> <LineItem>
<Text <Text
link
component={Link} component={Link}
overflow="hidden" overflow="hidden"
size="sm" size="sm"
@@ -146,13 +147,10 @@ export const LeftControls = () => {
</Text> </Text>
)}{' '} )}{' '}
<Text <Text
link
component={Link} component={Link}
overflow="hidden" overflow="hidden"
size="sm" size="sm"
sx={{
'&:hover': { textDecoration: 'underline' },
width: 'inherit',
}}
to={ to={
artist.id artist.id
? generatePath(AppRoute.LIBRARY_ARTISTS_DETAIL, { ? generatePath(AppRoute.LIBRARY_ARTISTS_DETAIL, {
@@ -169,6 +167,7 @@ export const LeftControls = () => {
</LineItem> </LineItem>
<LineItem secondary> <LineItem secondary>
<Text <Text
link
component={Link} component={Link}
overflow="hidden" overflow="hidden"
size="sm" size="sm"
@@ -47,6 +47,7 @@ const SidebarImage = styled.img`
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: contain; object-fit: contain;
background: var(--placeholder-bg);
`; `;
export const Sidebar = () => { export const Sidebar = () => {