Skip to content

Commit

Permalink
Revert "Removes "View in 3D" tab from match modal."
Browse files Browse the repository at this point in the history
This reverts commit 8a51c0e.
  • Loading branch information
neomorphic committed Mar 10, 2022
1 parent cd5413e commit 79c1b60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions public/RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
the match images will be flipped to make comparisons between them easier. The image can be reverted to the other orientation by clicking on the action
button just above it, to the right of the image name.

- ### Added a "View in 3D" tab to each result summary modal.
- This provides links to the VVD viewer, instructions on how to use it and links to the 3D files for the match and mask images.

### Bug fixes

- ### The PPPM images on the matches screen are now using smaller "thumbnail" images
Expand Down
6 changes: 3 additions & 3 deletions src/components/MatchModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState, useEffect } from "react";
import PropTypes from "prop-types";
import { Modal, Button, Tabs } from "antd";
import Summary from "./MatchModal/Summary";
// import ViewIn3D from "./MatchModal/ViewIn3D";
import ViewIn3D from "./MatchModal/ViewIn3D";

const { TabPane } = Tabs;

Expand Down Expand Up @@ -85,9 +85,9 @@ export default function MatchModal(props) {
matchesList={matchesList}
/>
</TabPane>
{/* <TabPane tab="View in 3D" key="2">
<TabPane tab="View in 3D" key="2">
<ViewIn3D selectedMatch={selectedMatch} mask={mask} isLM={isLM} />
</TabPane> */}
</TabPane>
</Tabs>
</Modal>
);
Expand Down

0 comments on commit 79c1b60

Please sign in to comment.