Browse Source

dshttpsettings: Move whitelisted cookies to end of config page

Daniel Lee 8 years ago
parent
commit
bcc85862fe
1 changed files with 14 additions and 12 deletions
  1. 14 12
      public/app/features/plugins/partials/ds_http_settings.html

+ 14 - 12
public/app/features/plugins/partials/ds_http_settings.html

@@ -36,18 +36,6 @@
         </div>
       </div>
     </div>
-
-    <div class="gf-form-inline" ng-if="current.access=='proxy'">
-      <div class="gf-form max-width-30">
-        <span class="gf-form-label width-7">Cookies</span>
-        <bootstrap-tagsinput ng-model="current.jsonData.keepCookies" tagclass="label label-tag" placeholder="Add Name">
-        </bootstrap-tagsinput>
-        <info-popover mode="right-absolute">
-          Grafana Proxy deletes forwarded cookies by default. Specify cookies by name that should be forwarded to the data source.
-        </info-popover>
-      </div>
-    </div>
-
   </div>
 
   <h3 class="page-heading">HTTP Auth</h3>
@@ -135,3 +123,17 @@
   </div>
 </div>
 
+<h3 class="page-heading" ng-if="current.access=='proxy'">Advanced HTTP Settings</h3>
+<div class="gf-form-group" ng-if="current.access=='proxy'">
+  <div class="gf-form-inline">
+    <div class="gf-form">
+      <span class="gf-form-label width-10">Whitelisted Cookies</span>
+      <bootstrap-tagsinput ng-model="current.jsonData.keepCookies" tagclass="label label-tag" placeholder="Add Name">
+      </bootstrap-tagsinput>
+      <info-popover mode="right-absolute">
+        Grafana Proxy deletes forwarded cookies by default. Specify cookies by name that should be forwarded to the data source.
+      </info-popover>
+    </div>
+  </div>
+</div>
+