remove control + click opening enso in browser (#10596)

this removed the bug that when you control + clicked on a linked cell it would open enso in browser
This commit is contained in:
marthasharkey 2024-07-22 09:45:15 +01:00 committed by GitHub
parent 7fd8701690
commit 5066b5764e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -407,7 +407,7 @@ function toLinkField(fieldName: string): ColDef {
tooltipValueGetter: () => {
return `Double click to view this ${newNodeSelectorValues.value.tooltipValue} in a separate component`
},
cellRenderer: (params: any) => `<a href='#'> ${params.value} </a>`,
cellRenderer: (params: any) => `<a> ${params.value} </a>`,
}
}