We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d335a commit ef5ca13Copy full SHA for ef5ca13
frontend/packages/@depmap/data-explorer-2/src/components/DataExplorerPage/utils.ts
@@ -780,8 +780,16 @@ export async function makePlotConfigBreadboxModeCompatible(
780
context: {
781
name: nextValue.identifier,
782
dimension_type: slice_type,
783
- expr: { "==": [{ var: "given_id" }, nextValue.identifier] },
784
- vars: {},
+ expr: { "==": [{ var: "entity_label" }, nextValue.identifier] },
+ vars: {
785
+ entity_label: {
786
+ dataset_id: maybeFallbackToMetadataDatasetNonGivenId(
787
+ `${slice_type}_metadata`
788
+ ),
789
+ identifier_type: "column" as const,
790
+ identifier: "label",
791
+ },
792
793
},
794
} as unknown) as DataExplorerPlotConfigDimension;
795
delete plot.metadata[key];
0 commit comments