pierrejeambrun commented on code in PR #27805:
URL: https://github.com/apache/airflow/pull/27805#discussion_r1033021606


##########
airflow/www/templates/airflow/trigger.html:
##########
@@ -44,12 +44,23 @@ <h2>Trigger DAG: {{ dag_id }}</h2>
     <div class="form-group row">
       <div class="col-md-2">
         <label for="run_id">Run id (Optional)</label>
-        <input type="text" class="form-control" placeholder="Run ID" 
name="run_id" >
+        <input type="text" class="form-control" placeholder="Run ID" 
name="run_id">
+      </div>
+    </div>
+    <div class="form-group row">
+      <div class="col-md-2">
+        <label for="recent_configs">Recent Configurations</label>
+        <select class="form-control" name="recent_configs" id="recent_configs">
+          <option value="">None</option>
+          {% for conf in recent_confs %}
+          <option value="{{conf}}">{{ conf }}</option>
+          {% endfor %}
+        </select>
       </div>
     </div>
     <label for="conf">Configuration JSON (Optional, must be a dict 
object)</label>
     <textarea class="form-control" name="conf" id="json">{{ conf }}</textarea>
-    </div>
+

Review Comment:
   This div was here to add some spacing after the json editor. (It wasn't 
working properly indeed). Maybe adding a line break (<br>), currently it's 
quite compact :):
   
![image](https://user-images.githubusercontent.com/14861206/204163363-da614e83-7b2d-4565-aea7-3b699afe0bfc.png)
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to