浏览代码

HUE-9144 [jobbrowser] Data column which was present in Hue 3 is missing in Hue 4

Mahesh Balakrishnan 5 年之前
父节点
当前提交
68544cb432
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      apps/jobbrowser/src/jobbrowser/templates/job_browser.mako

+ 2 - 0
apps/jobbrowser/src/jobbrowser/templates/job_browser.mako

@@ -2010,6 +2010,7 @@ ${ commonheader("Job Browser", "jobbrowser", user, request) | n,unicode }
               <th>${_('Id')}</th>
               <th>${_('Start time')}</th>
               <th>${_('End time')}</th>
+	      <th>${_('Data')}</th>
             </tr>
             </thead>
             <tbody data-bind="foreach: properties['actions']">
@@ -2026,6 +2027,7 @@ ${ commonheader("Job Browser", "jobbrowser", user, request) | n,unicode }
                 <td data-bind="text: id, click: function() {  $root.job().id(id); $root.job().fetchJob(); }, style: { color: '#0B7FAD' }" class="pointer"></td>
                 <td data-bind="moment: {data: startTime, format: 'LLL'}"></td>
                 <td data-bind="moment: {data: endTime, format: 'LLL'}"></td>
+		<td data-bind="text: data"></td>
               </tr>
             </tbody>
           </table>