Skip to content

Commit

Permalink
Update filter icon toggles. Fix card anchor tag style.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouder committed Mar 26, 2024
1 parent 4cdc795 commit b629589
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jhub_apps/static/css/index.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion jhub_apps/static/js/index.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions ui/src/components/app-card/app-card.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
box-shadow: 0px 1px 2px rgba(210, 210, 207, 0.7);
}

.card > a {
text-decoration: none;
}

#card-test-app {
position: relative;
}
Expand Down
4 changes: 2 additions & 2 deletions ui/src/pages/home/apps-section/app-filters/app-filters.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export const AppFilters = ({
color="secondary"
onClick={(event) => setBulkActionsAnchorEl(event.currentTarget)}
endIcon={
filtersOpen ? (
bulkActionsOpen ? (
<KeyboardArrowUpRoundedIcon />
) : (
<KeyboardArrowDownRoundedIcon />
Expand Down Expand Up @@ -307,7 +307,7 @@ export const AppFilters = ({
color: 'common.black',
}}
endIcon={
filtersOpen ? (
sortByOpen ? (
<KeyboardArrowUpRoundedIcon />
) : (
<KeyboardArrowDownRoundedIcon />
Expand Down

0 comments on commit b629589

Please sign in to comment.