Skip to content

Commit

Permalink
DCAT-1535 Adding data contract subscriptions dropdown to the table de…
Browse files Browse the repository at this point in the history
…tail page
  • Loading branch information
mikaalanwar committed Apr 30, 2024
1 parent 9ad6a45 commit 3ac97b6
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ import { AIRFLOW, DATABRICKS } from './ApplicationDropdown/constants';
import { STATUS_CODES } from '../../constants';

import './styles.scss';
import SubscriptionDropdown from './SubscriptionDropdown';

const DASHBOARDS_PER_PAGE = 10;
const TABLE_SOURCE = 'table_page';
Expand Down Expand Up @@ -663,6 +664,9 @@ export class TableDetail extends React.Component<

return (
<div>
{airflowApps.length > 0 && (
<SubscriptionDropdown tableApps={airflowApps} />
)}
{airflowApps.length > 0 && (
<ApplicationDropdown tableApps={airflowApps} />
)}
Expand Down

0 comments on commit 3ac97b6

Please sign in to comment.