mirror of
https://github.com/openziti/zrok.git
synced 2025-01-09 15:38:21 +01:00
Merge branch 'main' into v0.4.0
This commit is contained in:
commit
229769c942
@ -8,6 +8,8 @@ CHANGE: The underlying database store now utilizes a `deleted` flag on all table
|
|||||||
|
|
||||||
CHANGE: `zrok config set apiEndpoint` now validates that the new API endpoint correctly starts with `http://` or `https://` (https://github.com/openziti/zrok/issues/258)
|
CHANGE: `zrok config set apiEndpoint` now validates that the new API endpoint correctly starts with `http://` or `https://` (https://github.com/openziti/zrok/issues/258)
|
||||||
|
|
||||||
|
CHANGE: Additional linting to support homebrew (https://github.com/openziti/zrok/issues/264)
|
||||||
|
|
||||||
# v0.3.4
|
# v0.3.4
|
||||||
|
|
||||||
CHANGE: `zrok test endpoint` incorporates `--ziti` mode (and related flags) to allow direct endpoint listening on a Ziti service
|
CHANGE: `zrok test endpoint` incorporates `--ziti` mode (and related flags) to allow direct endpoint listening on a Ziti service
|
||||||
|
@ -17,12 +17,14 @@ const Visualizer = (props) => {
|
|||||||
console.log("resetting selection", props.selection);
|
console.log("resetting selection", props.selection);
|
||||||
props.setSelection(props.defaultSelection);
|
props.setSelection(props.defaultSelection);
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [props.overview]);
|
}, [props.overview]);
|
||||||
|
|
||||||
markSelected(networkGraph, props.selection);
|
markSelected(networkGraph, props.selection);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
markSelected(networkGraph, props.selection);
|
markSelected(networkGraph, props.selection);
|
||||||
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||||
}, [props.selection]);
|
}, [props.selection]);
|
||||||
|
|
||||||
// fgRef to access force graph controls from this component
|
// fgRef to access force graph controls from this component
|
||||||
|
Loading…
Reference in New Issue
Block a user