Skip to content

Commit

Permalink
fix(ui): make graph data watch immediate (#647)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerYeger committed Jan 27, 2022
1 parent a7dfc15 commit d9015ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui/client/components/FileDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ debouncedWatch(
graph.value = getModuleGraph(data.value, c.filepath)
}
},
{ debounce: 100 },
{ debounce: 100, immediate: true },
)
const open = () => {
Expand Down

0 comments on commit d9015ea

Please sign in to comment.