We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2880df commit 3e4d286Copy full SHA for 3e4d286
static/app/views/dashboards/dashboard.tsx
@@ -155,12 +155,14 @@ function Dashboard({
155
);
156
}, [api, organization.slug, selection.projects]);
157
158
- // The operations in this effect should only run on mount/unmount
159
useEffect(() => {
160
- window.addEventListener('resize', debouncedHandleResize);
161
-
162
// Always load organization tags on dashboards
163
loadOrganizationTags(api, organization.slug, selection);
+ }, [api, organization.slug, selection]);
+
+ // The operations in this effect should only run on mount/unmount
164
+ useEffect(() => {
165
+ window.addEventListener('resize', debouncedHandleResize);
166
167
// Get member list data for issue widgets
168
fetchMemberList();
0 commit comments