Skip to content

Commit

Permalink
fix(client): properly show assembly and exp. conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jan 16, 2024
1 parent 16175f2 commit 6f19962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/PeakAssay.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const PeaksTable = ({peaks, selectedPeak, onChangeFeature, onOpenTracks}) => {
const node = useSelector((state) => state.ui.node);

const dataset = useCurrentDataset();
const {assembly, conditions} = dataset?.data ?? {}; // dataset metadata
const {assembly, conditions} = dataset ?? {}; // dataset metadata

const [tooltipsShown, setTooltipsShown] = useState({});
const [tracksLoading, setTracksLoading] = useState({});
Expand Down

0 comments on commit 6f19962

Please sign in to comment.