Skip to content

Commit

Permalink
[ui] Add stub for Alerts section on code location page
Browse files Browse the repository at this point in the history
[INTERNAL_BRANCH=dish/oper-1646-alerts-code]
  • Loading branch information
hellendag committed Feb 27, 2025
1 parent 248f671 commit 45db8d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const CodeLocationAlertsSection = ({locationName: _}: {locationName: string}) => null;
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
} from '@dagster-io/ui-components';
import {StyledRawCodeMirror} from '@dagster-io/ui-components/editor';
import {useContext, useMemo} from 'react';
import {CodeLocationAlertsSection} from 'shared/code-location/CodeLocationAlertsSection.oss';
import {CodeLocationPageHeader} from 'shared/code-location/CodeLocationPageHeader.oss';
import {CodeLocationServerSection} from 'shared/code-location/CodeLocationServerSection.oss';
import {CodeLocationTabs} from 'shared/code-location/CodeLocationTabs.oss';
Expand Down Expand Up @@ -127,6 +128,7 @@ export const CodeLocationOverviewRoot = (props: Props) => {
</Table>
</>
) : null}
<CodeLocationAlertsSection locationName={repoAddress.location} />
<CodeLocationOverviewSectionHeader label="Metadata" border="bottom" />
<CodeLocationMetadataStyle />
<div style={{height: '320px'}}>
Expand Down

0 comments on commit 45db8d6

Please sign in to comment.