Airblader commented on a change in pull request #17698:
URL: https://github.com/apache/flink/pull/17698#discussion_r744705277



##########
File path: 
flink-runtime-web/web-dashboard/src/app/pages/task-manager/log-list/task-manager-log-list.component.html
##########
@@ -29,14 +29,16 @@
     <thead>
       <tr>
         <th>Log Name</th>
-        <th>Size (KB)</th>
+        <th [nzSortFn]="sortLastModifiedTimeFn">Last Modified Time</th>
+        <th [nzSortFn]="sortSizeFn">Size (KB)</th>
       </tr>
     </thead>
     <tbody>
-      <tr *ngFor="let log of listOfLog">
+      <tr *ngFor="let log of table.data">

Review comment:
       If the change to `table.data` isn't needed, I would prefer leaving it as 
`listOfLog` for now, yes. If we need the change (like for pagination) then we 
should at least use the same type trick I mentioned 
[here](https://github.com/apache/flink/pull/17619#discussion_r741033701).




-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to