Browse Source

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

Fixes: #17188
Hugo Häggmark 6 năm trước cách đây
mục cha
commit
3b35e9d5e8
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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;
       }