Skip to content
Snippets Groups Projects
Commit a46ba042 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix segment/metrics tableMetadata loading

parent 258af1db
No related branches found
No related tags found
No related merge requests found
......@@ -311,7 +311,7 @@ const metrics = handleActions({
const tableMetadata = handleActions({
[LOAD_TABLE_METADATA]: {
next: (state, { payload }) => payload,
next: (state, { payload }) => (payload && payload.table) ? payload.table : null,
throw: (state, action) => null
}
}, null);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment