浏览代码

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

Fixes: #17188
Hugo Häggmark 6 年之前
父节点
当前提交
3b35e9d5e8
共有 1 个文件被更改,包括 1 次插入1 次删除
  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;
       }