We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68b419 commit 20d547eCopy full SHA for 20d547e
1 file changed
airflow/www/static/js/dag/details/taskInstance/taskActions/MarkInstanceAs.tsx
@@ -296,17 +296,11 @@ const MarkInstanceAs = ({
296
</Flex>
297
</MenuButton>
298
<MenuList>
299
- <MenuItem
300
- onClick={markAsFailed}
301
- isDisabled={!isMappedSummary && currentState === "failed"}
302
- >
+ <MenuItem onClick={markAsFailed}>
303
<SimpleStatus state="failed" mr={2} />
304
failed
305
</MenuItem>
306
307
- onClick={markAsSuccess}
308
- isDisabled={!isMappedSummary && currentState === "success"}
309
+ <MenuItem onClick={markAsSuccess}>
310
<SimpleStatus state="success" mr={2} />
311
success
312
0 commit comments