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={}
/>
))}
}
>
- }
- style={{
- minWidth: 'initial',
- borderTopLeftRadius: 0,
- borderBottomLeftRadius: 0,
- marginLeft: '-1px',
- }}
- >
- Open in editor
-
+ }>Open in editor
) : (
}
href={getCodeReferenceLink(codeLinkProtocol, sources[0] as SourceLocation)}
- style={
- hasMultipleCodeSources
- ? {
- borderTopRightRadius: 0,
- borderBottomRightRadius: 0,
- borderRight: '0px',
- }
- : {}
- }
>
Open {getCodeReferenceEntryLabel(sources[0] as SourceLocation)} in editor