Browse Source

Fix large overflow bar on cache path

master
jeffvli 3 years ago
parent
commit
a8c2b13af6
  1. 2
      src/components/settings/ConfigPanels/CacheConfig.tsx

2
src/components/settings/ConfigPanels/CacheConfig.tsx

@ -176,7 +176,7 @@ const CacheConfig = ({ bordered }: any) => {
{!isEditingCachePath && (
<>
{t('Location:')}{' '}
<div style={{ overflow: 'auto' }}>
<div style={{ overflow: 'none' }}>
<StyledLink onClick={() => shell.openPath(getRootCachePath())}>
{getRootCachePath()} <Icon icon="external-link" />
</StyledLink>

Loading…
Cancel
Save