Commit 3b35e9d5 by Hugo Häggmark Committed by David

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

Fixes: #17188
parent 3b008d06
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment