增加流水线节点名称,和标识区分

This commit is contained in:
xxq250 2024-05-31 10:59:38 +08:00
parent b96d52a84d
commit 1573abdde1
1 changed files with 4 additions and 5 deletions

View File

@ -14,14 +14,13 @@
<label for="status">类型:</label>
<%= form.select :action_node_types_id, options_for_select(Action::NodeType.all.map { |key| [key.name, key.id]}, node.action_node_types_id), {}, class: "form-control" %>
</div>
<div class="field">
<%= form.label :name, "节点名称" %>
<%= form.text_field :name %>
<%= form.label :label, "节点名称" %>
<%= form.text_field :label %>
</div>
<div class="field">
<%= form.label :label, "节点标识" %>
<%= form.text_field :label %>
<%= form.label :name, "节点标识" %>
<%= form.text_field :name %>
</div>
<div class="field">
<%= form.label :full_name, "节点全名" %>