mirror of
https://github.com/langgenius/dify.git
synced 2026-05-05 18:08:07 +08:00
feat: Remove allowGraphActions check from retry and error panels
This commit is contained in:
@ -625,7 +625,7 @@ const BasePanel: FC<BasePanelProps> = ({
|
|||||||
</div>
|
</div>
|
||||||
<Split />
|
<Split />
|
||||||
{
|
{
|
||||||
allowGraphActions && hasRetryNode(data.type) && (
|
hasRetryNode(data.type) && (
|
||||||
<RetryOnPanel
|
<RetryOnPanel
|
||||||
id={id}
|
id={id}
|
||||||
data={data}
|
data={data}
|
||||||
@ -633,7 +633,7 @@ const BasePanel: FC<BasePanelProps> = ({
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
allowGraphActions && hasErrorHandleNode(data.type) && (
|
hasErrorHandleNode(data.type) && (
|
||||||
<ErrorHandleOnPanel
|
<ErrorHandleOnPanel
|
||||||
id={id}
|
id={id}
|
||||||
data={data}
|
data={data}
|
||||||
|
|||||||
Reference in New Issue
Block a user