Skip to content

Commit 986ac29

Browse files
committed
update info text
1 parent ee787d6 commit 986ac29

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

src/components/Selections.tsx

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,11 +153,16 @@ const Selections: React.FC<SelectionsProps> = ({
153153
};
154154

155155
const handleInfoClick = () => {
156-
const info = `This is a simple RDF visualizer that allows you to upload a turtle file and visualize the graph. Check examples in the repository for sample config and turtle files.
157-
158-
You can filter the nodes by group and remove nodes that are not linked. The config file is loaded from a YAML file and you can check it by clicking 'Show config' button.
159-
160-
If your graph has more than 2000 nodes, it might take a while to load. Please wait until graph elements are rendered (stops spinning) before interacting with the graph.`;
156+
const info = `Overview
157+
This simple RDF visualizer allows you to upload a turtle file and visualize the graph. Check examples in the [repository](https://github.com/Materials-Data-Science-and-Informatics/rdf-graph-visualization) for sample config and turtle files.
158+
159+
Features
160+
- filter the nodes by groups
161+
- remove unlinked nodes
162+
- The config file is loaded from a YAML file
163+
- see and update the graph configuration by clicking the 'Show config' button.
164+
165+
If your graph has more than 2000 nodes, it might take a while to load. Please wait until graph elements are rendered (stop spinning) before interacting with the graph.`;
161166
setModalText(info);
162167
onOpen();
163168
};

0 commit comments

Comments
 (0)