Skip to content

Commit ee961a5

Browse files
committed
fix: correct spelling of "Hypergraph" in viewer component
1 parent de7244b commit ee961a5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

hyperdb/templates/hypergraph_viewer.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
return await response.json();
188188
};
189189

190-
function HyperGraphViewer() {
190+
function HypergraphViewer() {
191191
const containerRef = useRef(null);
192192
const graphRef = useRef(null);
193193
const searchTimeoutRef = useRef(null);
@@ -809,7 +809,7 @@ <h3 className="text-xl font-semibold text-gray-800 m-0">
809809
: "bg-gray-100 text-gray-600 hover:bg-gray-200"
810810
}`}
811811
>
812-
{mode === "hyper" ? "HyperGraph" : "Graph"}
812+
{mode === "hyper" ? "Hypergraph" : "Graph"}
813813
</button>
814814
))}
815815
</div>
@@ -862,12 +862,12 @@ <h3 className="text-xl font-semibold text-gray-800 m-0">
862862
{visualizationMode === "hyper" && (
863863
<div className="shrink-0 w-72 h-full overflow-y-auto bg-white/95 backdrop-blur-sm border-l border-gray-200/50 p-3 shadow-xl overflow-y-auto">
864864
<div className="text-lg font-bold text-gray-800 mb-3 pb-2 border-b-2 border-primary-500">
865-
HyperGraph Detail
865+
Hypergraph Detail
866866
</div>
867867
{hoverHyperedge && (
868868
<div className="text-sm text-gray-700 space-y-3 border-b-2 border-primary-500 pb-6">
869869
<div className="text-base font-semibold text-gray-900">
870-
HyperEdge
870+
Hyperedge
871871
</div>
872872
{hoverHyperedge.description && (
873873
<div>
@@ -966,7 +966,7 @@ <h3 className="text-xl font-semibold text-gray-800 m-0">
966966
);
967967
}
968968

969-
ReactDOM.render(<HyperGraphViewer />, document.getElementById("root"));
969+
ReactDOM.render(<HypergraphViewer />, document.getElementById("root"));
970970
</script>
971971
</body>
972972
</html>

0 commit comments

Comments
 (0)