Skip to content

Commit

Permalink
[FLINK-16348][WebUI] Add commas to numeric accumulators
Browse files Browse the repository at this point in the history
  • Loading branch information
kbohinski authored Mar 3, 2020
1 parent e3307b7 commit a9d47c7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<tr *ngFor="let accumulator of listOfAccumulator; trackBy:trackAccumulatorBy;">
<td>{{ accumulator.name }}</td>
<td>{{ accumulator.type }}</td>
<td>{{ accumulator.value }}</td>
<td>{{ (accumulator.value | number:'1.0-3' ) || accumulator.value }}</td>
</tr>
</tbody>
</nz-table>
Expand Down

0 comments on commit a9d47c7

Please sign in to comment.