소스 검색

HUE-5304 [indexer] Sample data should be on the same line of the field name

Enrico Berti 8 년 전
부모
커밋
6faf8373aa
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      desktop/libs/indexer/src/indexer/templates/importer.mako

+ 3 - 2
desktop/libs/indexer/src/indexer/templates/importer.mako

@@ -870,7 +870,7 @@ ${ assist.assistPanel() }
       <a data-bind="click: function() { $parent.nested.remove($data); }"><i class="fa fa-minus"></i></a>
     <!-- /ko -->
 
-    <div data-bind="template: { name:'field-column-example' }"></div>
+    <div class="inline-block" data-bind="template: { name:'field-column-example' }"></div>
 
     <!-- ko if: type() == 'array' || type() == 'map' || type() == 'struct' -->
       <div class="operation" data-bind="template: { name: 'table-field-template', foreach: nested }"></div>
@@ -904,6 +904,8 @@ ${ assist.assistPanel() }
   <a class="pointer margin-left-20" data-bind="click: $root.createWizard.addOperation, visible: $root.createWizard.destination.indexerRunJob" title="${_('Add Operation')}"><i class="fa fa-plus"></i> ${_('Operation')}</a>
   <!-- /ko -->
 
+  <div class="inline-block" data-bind="template: { name: 'field-column-example' }"></div>
+
   <div data-bind="foreach: operations">
     <div data-bind="template: { name:'operation-template',data:{operation: $data, list: $parent.operations}}"></div>
   </div>
@@ -912,7 +914,6 @@ ${ assist.assistPanel() }
   <a class="pointer" data-bind="click: $root.createWizard.addOperation" title="${_('Add Operation')}"><i class="fa fa-plus"></i> ${_('Operation to')} <span data-bind="text: name"></span></a>
   <!-- /ko -->
 
-  <span data-bind="template: { name: 'field-column-example' }"></span>
 </script>