diff --git a/js_modules/dagster-ui/packages/ui-core/src/asset-graph/Utils.tsx b/js_modules/dagster-ui/packages/ui-core/src/asset-graph/Utils.tsx index 5e32347f8308d..70110baeae14c 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/asset-graph/Utils.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/asset-graph/Utils.tsx @@ -226,7 +226,6 @@ export const buildLiveDataForNode = ( }; export function tokenForAssetKey(key: {path: string[]}) { - console.log(key); return key.path.join('/'); } diff --git a/js_modules/dagster-ui/packages/ui-core/src/assets/LaunchAssetChoosePartitionsDialog.tsx b/js_modules/dagster-ui/packages/ui-core/src/assets/LaunchAssetChoosePartitionsDialog.tsx index dc59e5a24629e..15e10ee471267 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/assets/LaunchAssetChoosePartitionsDialog.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/assets/LaunchAssetChoosePartitionsDialog.tsx @@ -170,7 +170,6 @@ const LaunchAssetChoosePartitionsDialogBody = ({ const assetHealthLoading = assetHealth.length === 0; const displayedHealth = React.useMemo(() => { - console.log(JSON.stringify({assetHealth}, null, 2)); if (target.type === 'pureAll') { return mergedAssetHealth([]); } @@ -429,7 +428,7 @@ const LaunchAssetChoosePartitionsDialogBody = ({ if (target.type === 'pureWithAnchorAsset') { notices.push( `Dagster will materialize all partitions downstream of the ` + - `selected partitions for the selected assets, using separate runs + `selected partitions for the selected assets, using separate runs ${backfillPolicyVaries ? `and obeying backfill policies.` : `as needed.`}`, ); } else if (backfillPolicyVaries) { diff --git a/js_modules/dagster-ui/packages/ui-core/src/assets/__tests__/LaunchAssetChoosePartitionsDialog.test.tsx b/js_modules/dagster-ui/packages/ui-core/src/assets/__tests__/LaunchAssetChoosePartitionsDialog.test.tsx index 8ff7e5760eeee..29dd6f7f6c651 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/assets/__tests__/LaunchAssetChoosePartitionsDialog.test.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/assets/__tests__/LaunchAssetChoosePartitionsDialog.test.tsx @@ -29,7 +29,6 @@ import {PARTITION_HEALTH_QUERY} from '../usePartitionHealthData'; describe('launchAssetChoosePartitionsDialog', () => { it('Adding a dynamic partition when multiple assets selected', async () => { const errorMock = jest.fn(); - // jest.spyOn(console, 'error').mockImplementation(() => errorMock); const assetA = buildAsset('asset_a', ['test']); const assetB = buildAsset('asset_b', ['test']); diff --git a/js_modules/dagster-ui/packages/ui-core/src/partitions/DimensionRangeWizard.tsx b/js_modules/dagster-ui/packages/ui-core/src/partitions/DimensionRangeWizard.tsx index b022e3d58443c..90d4c85f3c95f 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/partitions/DimensionRangeWizard.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/partitions/DimensionRangeWizard.tsx @@ -54,7 +54,6 @@ export const DimensionRangeWizard = ({ const [showCreatePartition, setShowCreatePartition] = React.useState(false); - console.log('isDynamic', isDynamic); return ( <>