Browse Source

change starred title, remove padding

master
jeffvli 3 years ago
parent
commit
0303118290
  1. 4
      src/components/settings/ListViewColumns.ts
  2. 3
      src/components/viewtypes/ListViewTable.tsx

4
src/components/settings/ListViewColumns.ts

@ -79,7 +79,7 @@ export const songColumnList = [
{
label: 'Favorite',
value: {
id: 'Favorite',
id: 'Fav',
dataKey: 'starred',
alignment: 'center',
resizable: true,
@ -219,7 +219,7 @@ export const albumColumnList = [
{
label: 'Favorite',
value: {
id: 'Favorite',
id: 'Fav',
dataKey: 'starred',
alignment: 'center',
resizable: true,

3
src/components/viewtypes/ListViewTable.tsx

@ -385,7 +385,8 @@ const ListViewTable = ({
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
overflow: 'hidden',
paddingRight: '20px',
paddingRight:
column.dataKey !== 'starred' ? '20px' : undefined,
}}
>
{column.dataKey === 'album' ||

Loading…
Cancel
Save