Skip to content
Snippets Groups Projects
Commit deb3a781 authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[tip] fix scope selection

parent 3b9b69b5
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ function getScope(g : WP.goalsData): string { ...@@ -62,7 +62,7 @@ function getScope(g : WP.goalsData): string {
if (g.bhv && g.fct) return `${g.fct} — {g.bhv}}`; if (g.bhv && g.fct) return `${g.fct} — {g.bhv}}`;
if (g.fct) return g.fct; if (g.fct) return g.fct;
if (g.thy) return g.thy; if (g.thy) return g.thy;
return ''; return 'Global';
} }
/* -------------------------------------------------------------------------- */ /* -------------------------------------------------------------------------- */
...@@ -168,12 +168,12 @@ export function GoalTable(props: GoalTableProps): JSX.Element { ...@@ -168,12 +168,12 @@ export function GoalTable(props: GoalTableProps): JSX.Element {
); );
React.useEffect(() => { React.useEffect(() => {
if (failed || !!scope) { if (failed || scoped) {
model.setFilter(filterGoal(failed, scope)); model.setFilter(filterGoal(failed, scope));
} else { } else {
model.setFilter(); model.setFilter();
} }
}, [model, scope, failed]); }, [model, failed, scoped, scope]);
React.useEffect(() => setGoals(goals), [goals, setGoals]); React.useEffect(() => setGoals(goals), [goals, setGoals]);
React.useEffect(() => setTotal(total), [total, setTotal]); React.useEffect(() => setTotal(total), [total, setTotal]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment