Skip to content

Commit

Permalink
1.4.2 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ReStartQ committed Jan 12, 2024
1 parent 42cf355 commit 5fd1e97
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/renderer/components/app/search/tables/SearchMediaTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import { useSearchQuery } from 'renderer/functions/SearchFunctions';
import { useSearchTerm } from 'renderer/context/SearchTermContext';
import { useAdult } from 'renderer/context/AdultContext';
import { MediaIcons, OnListIcon } from '../../etc/SvgIcons';
import { StyledMenu } from '../../styled/StyledComponents';
import { StyledMenu, StyledMenuDark } from '../../styled/StyledComponents';
import SearchTitleTableBox from './SearchTitleTableBox';

export default function SearchMediaTable({ props }: any) {
Expand Down Expand Up @@ -296,7 +296,7 @@ export default function SearchMediaTable({ props }: any) {
>
<MoreHorizIcon className="MenuButtonIcons" />
</IconButton>
<StyledMenu
<StyledMenuDark
id="basic-menu"
anchorEl={anchorEl}
open={open}
Expand Down Expand Up @@ -341,7 +341,7 @@ export default function SearchMediaTable({ props }: any) {
Add to List
</MenuItem>
)}
</StyledMenu>
</StyledMenuDark>
</div>
);
},
Expand Down Expand Up @@ -572,7 +572,7 @@ export default function SearchMediaTable({ props }: any) {
>
<MoreHorizIcon className="MenuIcons" />
</IconButton>
<StyledMenu
<StyledMenuDark
id="basic-menu"
anchorEl={anchorEl}
open={open}
Expand Down Expand Up @@ -617,7 +617,7 @@ export default function SearchMediaTable({ props }: any) {
Add to List
</MenuItem>
)}
</StyledMenu>
</StyledMenuDark>
</Box>
);
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ import { useSearchQuery } from 'renderer/functions/SearchFunctions';
import { useSearchTerm } from 'renderer/context/SearchTermContext';
import { useAdult } from 'renderer/context/AdultContext';
import { MediaIcons, OnListIcon } from '../../etc/SvgIcons';
import { StyledMenu } from '../../styled/StyledComponents';
import { StyledMenu, StyledMenuDark } from '../../styled/StyledComponents';
import SeasonTitleTableBox from './SeasonTitleTableBox';

export default function SeasonMediaTable({ props }: any) {
Expand Down Expand Up @@ -281,7 +281,7 @@ export default function SeasonMediaTable({ props }: any) {
>
<MoreHorizIcon className="MenuButtonIcons" />
</IconButton>
<StyledMenu
<StyledMenuDark
id="basic-menu"
anchorEl={anchorEl}
open={open}
Expand Down Expand Up @@ -326,7 +326,7 @@ export default function SeasonMediaTable({ props }: any) {
Add to List
</MenuItem>
)}
</StyledMenu>
</StyledMenuDark>
</div>
);
},
Expand Down

0 comments on commit 5fd1e97

Please sign in to comment.