From ebf75202ff79c6b7bd08781c07b0125284693fae Mon Sep 17 00:00:00 2001 From: Jingcheng Yang Date: Sun, 10 Mar 2024 00:33:59 -0500 Subject: [PATCH] Update the docs. --- studio/public/README/help.md | 8 ++++---- studio/src/components/Header/index.tsx | 7 +++++++ 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/studio/public/README/help.md b/studio/public/README/help.md index 2243ec2..0ee0e23 100644 --- a/studio/public/README/help.md +++ b/studio/public/README/help.md @@ -21,19 +21,19 @@ Once you are logged in, you can start predicting interactions between genes, dru There are several operations you can do on the knowledge graph. You can right-click on a node, right-click on a edge, right-click on a canvas to do different operations for the nodes, edges, and graph respectively. If you would like to know more common operations, you can click the button with a question mark on the top of the page to see the help document. This button is on the right side of the "Upload / Query" button.
- +
- +
- +
- +
NOTE: Video Tutorial is coming soon! diff --git a/studio/src/components/Header/index.tsx b/studio/src/components/Header/index.tsx index 26c826c..f8104a3 100644 --- a/studio/src/components/Header/index.tsx +++ b/studio/src/components/Header/index.tsx @@ -65,6 +65,11 @@ const GlobalHeaderRight: React.FC = (props) => { key: 'user', icon: , }, + { + label: 'v0.3.1', + key: 'version', + icon: + }, { label: 'About', key: 'about', @@ -89,6 +94,8 @@ const GlobalHeaderRight: React.FC = (props) => { history.push('/help') } else if (item.key === 'changelog') { history.push('/changelog') + } else if (item.key === 'version') { + window.open('https://github.com/open-prophetdb/biomedgps/releases', '_blank'); } };