From 85750bb3ac8ad6dd666358035d0cede37b1a61fb Mon Sep 17 00:00:00 2001 From: benpankow Date: Tue, 7 May 2024 10:59:44 -0700 Subject: [PATCH] style updates --- .../ui-core/src/code-links/CodeLink.tsx | 22 ++----------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/js_modules/dagster-ui/packages/ui-core/src/code-links/CodeLink.tsx b/js_modules/dagster-ui/packages/ui-core/src/code-links/CodeLink.tsx index dcd080f435b8b..a84621e5a5aad 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/code-links/CodeLink.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/code-links/CodeLink.tsx @@ -41,36 +41,18 @@ export const CodeLink = ({codeLinkData}: {codeLinkData: CodeReferencesMetadataEn const codeLink = getCodeReferenceLink(codeLinkProtocol, source); window.open(codeLink, '_blank'); }} + icon={} /> ))} } > - + ) : ( } href={getCodeReferenceLink(codeLinkProtocol, sources[0] as SourceLocation)} - style={ - hasMultipleCodeSources - ? { - borderTopRightRadius: 0, - borderBottomRightRadius: 0, - borderRight: '0px', - } - : {} - } > Open {getCodeReferenceEntryLabel(sources[0] as SourceLocation)} in editor