Github user mcgilman commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2219#discussion_r159233690
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/partials/canvas/save-flow-version-dialog.jsp
---
@@ -0,0 +1,57 @@
+<%--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements. See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+--%>
+<%@ page contentType="text/html" pageEncoding="UTF-8" session="false" %>
+<div id="save-flow-version-dialog" layout="column" class="hidden
large-dialog">
+ <div class="dialog-content">
+ <div class="setting">
+ <div class="setting-name">Registry</div>
+ <div class="setting-field">
+ <div id="save-flow-version-registry-combo"
class="hidden"></div>
+ <div id="save-flow-version-registry" class="hidden"></div>
+ </div>
+ </div>
+ <div class="setting">
+ <div class="setting-name">Bucket</div>
+ <div class="setting-field">
+ <div id="save-flow-version-bucket-combo"
class="hidden"></div>
+ <div id="save-flow-version-bucket" class="hidden"></div>
+ </div>
+ </div>
+ <div class="setting">
+ <div class="setting-name">Name</div>
+ <div id="save-flow-version-registry-container"
class="setting-field">
+ <span id="save-flow-version-process-group-id"
class="hidden"></span>
+ <input type="text" id="save-flow-version-name-field"
class="setting-input hidden"/>
+ <div id="save-flow-version-name" class="hidden"></div>
+ <div id="save-flow-version-label"></div>
+ </div>
+ </div>
+ <div class="setting">
+ <div class="setting-name">Description</div>
--- End diff --
Once the flow is added to the registry, only the change comments can be
specified during commit. If we want to support editing of the flow details, we
should probably consider that for a future Registry improvement.
---