fix: opts being overriden in graph option (#384)

This commit is contained in:
松浦 知也 Matsuura Tomoya 2023-08-22 00:45:47 +09:00 committed by GitHub
parent bb93ac1c83
commit 2774e976d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,8 +47,8 @@ const defaultOptions: GraphOptions = {
export default ((opts?: GraphOptions) => {
function Graph() {
const localGraph = { ...opts?.localGraph, ...defaultOptions.localGraph }
const globalGraph = { ...opts?.globalGraph, ...defaultOptions.globalGraph }
const localGraph = { ...defaultOptions.localGraph, ...opts?.localGraph, }
const globalGraph = { ...defaultOptions.globalGraph, ...opts?.globalGraph, }
return (
<div class="graph">
<h3>Graph View</h3>