소스 검색

[notebook] Add title to help notice the scrollable columns in the result

Romain Rigaux 10 년 전
부모
커밋
851729ad78
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/libs/notebook/src/notebook/templates/editor_components.mako

+ 1 - 1
desktop/libs/notebook/src/notebook/templates/editor_components.mako

@@ -516,7 +516,7 @@ from desktop.views import _ko
         <ul class="unstyled" data-bind="foreach: result.meta">
           <li data-bind="visible: name != ''">
             <input type="checkbox" checked="checked" data-bind="event: { change: function(){toggleColumn($element, $index());}}" />
-            <a class="pointer" data-bind="text: $data.name, click: function(){ scrollToColumn($element, $index()); }"></a>
+            <a class="pointer" title="${ _('Click to scroll to column') }" data-bind="text: $data.name, click: function(){ scrollToColumn($element, $index()); }"></a>
           </li>
         </ul>
       </div>