File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -299,8 +299,6 @@ function makeCellActions({
299299 */
300300function getInternalLinkActionLabel ( field : string ) : string {
301301 switch ( field ) {
302- case FieldKey . ID :
303- return t ( 'Open view' ) ;
304302 case FieldKey . TRACE :
305303 return t ( 'Open trace' ) ;
306304 case FieldKey . PROJECT :
@@ -478,8 +476,12 @@ const ActionMenuTrigger = styled(Button)`
478476` ;
479477
480478const ActionMenuTriggerV2 = styled ( 'div' ) `
479+ a,
480+ span {
481+ color: ${ p => p . theme . textColor } ;
482+ }
481483 :hover {
482484 cursor: pointer;
483- font-weight: ${ p => p . theme . fontWeight . bold } ;
485+ text-shadow: 0.5px 0px ;
484486 }
485487` ;
Original file line number Diff line number Diff line change @@ -162,6 +162,10 @@ function BaseExploreFieldRenderer({
162162 } ) ;
163163
164164 rendered = < Link to = { target } > { rendered } </ Link > ;
165+
166+ if ( organization . features . includes ( 'discover-cell-actions-v2' ) && field === 'id' ) {
167+ return rendered ;
168+ }
165169 }
166170
167171 if ( field === 'profile.id' ) {
You can’t perform that action at this time.
0 commit comments