File tree 1 file changed +3
-0
lines changed
static/app/views/explore/tables
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ export function ColumnEditorModal({
53
53
value : column ,
54
54
textValue : column ,
55
55
trailingItems : < TypeBadge kind = { classifyTagKey ( column ) } /> ,
56
+ key : `${ column } -${ classifyTagKey ( column ) } ` ,
56
57
} ;
57
58
} ) ,
58
59
...Object . values ( stringTags ) . map ( tag => {
@@ -61,6 +62,7 @@ export function ColumnEditorModal({
61
62
value : tag . key ,
62
63
textValue : tag . name ,
63
64
trailingItems : < TypeBadge kind = { FieldKind . TAG } /> ,
65
+ key : `${ tag . key } -${ FieldKind . TAG } ` ,
64
66
} ;
65
67
} ) ,
66
68
...Object . values ( numberTags ) . map ( tag => {
@@ -69,6 +71,7 @@ export function ColumnEditorModal({
69
71
value : tag . key ,
70
72
textValue : tag . name ,
71
73
trailingItems : < TypeBadge kind = { FieldKind . MEASUREMENT } /> ,
74
+ key : `${ tag . key } -${ FieldKind . MEASUREMENT } ` ,
72
75
} ;
73
76
} ) ,
74
77
] ;
You can’t perform that action at this time.
0 commit comments