1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00

New: Bulk import list exclusions removal

This commit is contained in:
Bogdan
2024-08-15 06:19:12 +03:00
committed by GitHub
parent 3b29096e40
commit 639b53887d
15 changed files with 286 additions and 164 deletions
+4 -1
View File
@@ -66,7 +66,9 @@ function Table(props) {
columns.map((column) => {
const {
name,
isVisible
isVisible,
isSortable,
...otherColumnProps
} = column;
if (!isVisible) {
@@ -84,6 +86,7 @@ function Table(props) {
name={name}
isSortable={false}
{...otherProps}
{...otherColumnProps}
>
<TableOptionsModalWrapper
columns={columns}