mirror of
https://github.com/langgenius/dify.git
synced 2026-02-22 14:01:50 -05:00
feat: Remove allowGraphActions check from retry and error panels
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user