Skip to content

Commit

Permalink
fix(dashboards): Refresh missing data in shared dashboards (#20144)
Browse files Browse the repository at this point in the history
  • Loading branch information
Twixes authored Feb 5, 2024
1 parent afe16d2 commit 69d4198
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/src/scenes/dashboard/dashboardLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,9 @@ export const dashboardLogic = kea<dashboardLogicType>([
let refreshesFinished = 0
let totalResponseBytes = 0

const hardRefreshWithoutCache = action === 'refresh_manual' || action === 'refresh_above_threshold'
const hardRefreshWithoutCache = ['refresh_manual', 'refresh_above_threshold', 'load_missing'].includes(
action
)

// array of functions that reload each item
const fetchItemFunctions = insights.map((insight) => async () => {
Expand Down

0 comments on commit 69d4198

Please sign in to comment.