mirror of
https://github.com/jeffvli/sonixd.git
synced 2026-04-29 10:42:40 -04:00
Fix resizable col on mini view not saving to state
This commit is contained in:
@@ -397,7 +397,9 @@ const ListViewTable = ({
|
||||
settings.setSync(`miniListColumns[${resizedColumnIndex}].width`, newWidth);
|
||||
}
|
||||
|
||||
const newCols = configState.lookAndFeel.listView[listType].columns.map((c: any) => {
|
||||
const newCols = configState.lookAndFeel.listView[
|
||||
miniView ? 'mini' : listType
|
||||
].columns.map((c: any) => {
|
||||
if (c.dataKey === column.dataKey) {
|
||||
const { width, ...rest } = c;
|
||||
return { width: newWidth, ...rest };
|
||||
@@ -407,7 +409,7 @@ const ListViewTable = ({
|
||||
});
|
||||
dispatch(
|
||||
setColumnList({
|
||||
listType,
|
||||
listType: miniView ? 'mini' : listType,
|
||||
entries: newCols,
|
||||
})
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user