feat: Remove allowGraphActions check from retry and error panels

This commit is contained in:
zhsama
2026-01-19 23:07:32 +08:00
parent e1e64ae430
commit 68fd7c021c

View File

@@ -625,7 +625,7 @@ const BasePanel: FC<BasePanelProps> = ({
</div>
<Split />
{
allowGraphActions && hasRetryNode(data.type) && (
hasRetryNode(data.type) && (
<RetryOnPanel
id={id}
data={data}
@@ -633,7 +633,7 @@ const BasePanel: FC<BasePanelProps> = ({
)
}
{
allowGraphActions && hasErrorHandleNode(data.type) && (
hasErrorHandleNode(data.type) && (
<ErrorHandleOnPanel
id={id}
data={data}