Skip to content

Commit

Permalink
hide also in search
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson committed May 21, 2024
1 parent 6d2e776 commit cf0fc1f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions website/src/components/SearchPage/SearchFullUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ export const InnerSearchFullUI = ({
const visibilities = useMemo(() => {
const visibilities = new Map<string, boolean>();
schema.metadata.forEach((field) => {
if(field.hideOnSequenceDetailsPage === true) {
return;
}
visibilities.set(field.name, field.initiallyVisible === true);
});

Expand Down

0 comments on commit cf0fc1f

Please sign in to comment.