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

Fixes: #17188
This commit is contained in:
Hugo Häggmark 2019-05-21 09:34:42 +02:00 committed by David
parent 3b008d06b4
commit 3b35e9d5e8

View File

@ -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;
}