You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the river conditions and flow tiles were added to their own respective carousels, they were filtered out from other places in the site using these two lines: this.vizList_events = this.vizList_events_all.filter((viz) => !viz.title.includes("River Conditions")); this.vizList_charts = this.vizList_charts_all.filter((viz) => !viz.title.includes("Flow cartogram"));
In the future, we may want to just remove these from the viz_list.csv, which will eliminate the need for these two lines of code.
The text was updated successfully, but these errors were encountered:
When the river conditions and flow tiles were added to their own respective carousels, they were filtered out from other places in the site using these two lines:
this.vizList_events = this.vizList_events_all.filter((viz) => !viz.title.includes("River Conditions"));
this.vizList_charts = this.vizList_charts_all.filter((viz) => !viz.title.includes("Flow cartogram"));
In the future, we may want to just remove these from the
viz_list.csv
, which will eliminate the need for these two lines of code.The text was updated successfully, but these errors were encountered: