fixed 节点参数删除api

This commit is contained in:
xxq250 2025-09-08 11:16:52 +08:00
parent e943ec6f4c
commit 1c8a18487e
1 changed files with 4 additions and 1 deletions

View File

@ -50,7 +50,10 @@ class Action::NodeInputsController < ApplicationController
else
flash[:danger] = '删除失败'
end
redirect_to "api/actions/nodes"
respond_to do |format|
format.html { redirect_to "api/actions/nodes" }
format.json { render_ok() }
end
end
private