Browse Source

Fix: Fixes so new data is pushed during live tailing (#17189)

Fixes: #17188
Hugo Häggmark 6 years ago
parent
commit
3b35e9d5e8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/features/explore/state/reducers.ts

+ 1 - 1
public/app/features/explore/state/reducers.ts

@@ -438,7 +438,7 @@ export const itemReducer = reducerFactory<ExploreItemState>({} as ExploreItemSta
       const { data } = action.payload;
       const live = isLive(refreshInterval);
 
-      if (live) {
+      if (!live) {
         return state;
       }