diff --git a/js_modules/dagster-ui/packages/ui-core/src/runs/QueuedRunCriteriaDialog.tsx b/js_modules/dagster-ui/packages/ui-core/src/runs/QueuedRunCriteriaDialog.tsx index 35ba9d58a4f46..85e42105079ed 100644 --- a/js_modules/dagster-ui/packages/ui-core/src/runs/QueuedRunCriteriaDialog.tsx +++ b/js_modules/dagster-ui/packages/ui-core/src/runs/QueuedRunCriteriaDialog.tsx @@ -11,6 +11,7 @@ import { Tag, Tooltip, } from '@dagster-io/ui-components'; +import isObject from 'lodash/isObject'; import * as React from 'react'; import {Link} from 'react-router-dom'; import * as yaml from 'yaml'; @@ -66,7 +67,10 @@ const QueuedRunCriteriaDialogContent = ({run}: {run: RunTableRunFragment}) => { return limits.filter( (limit) => limit.key in runTagMap && - (limit.value === undefined || limit.value === runTagMap[limit.key]), + (limit.value === undefined || + limit.value === runTagMap[limit.key] || + // can be {"applyLimitPerUniqueValue": bool} + isObject(limit.value)), ); } catch (err) { return undefined;