We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47c8067 commit ae5067eCopy full SHA for ae5067e
src/timeMachine/components/Vis.tsx
@@ -95,7 +95,10 @@ const TimeMachineVis: FC<Props> = ({
95
giraffeResult.table.getColumnType('_value') !== 'number' &&
96
!!giraffeResult.table.length)
97
98
- if (isFlagEnabled('graphColorMapping')) {
+ if (
99
+ isFlagEnabled('graphColorMapping') &&
100
+ viewProperties.hasOwnProperty('colors')
101
+ ) {
102
const groupKey = [...giraffeResult.fluxGroupKeyUnion, 'result']
103
const [, fillColumnMap] = createGroupIDColumn(giraffeResult.table, groupKey)
104
const {colorMappingForIDPE, needsToSaveToIDPE} = getColorMappingObjects(
0 commit comments