NIFI-4839 - The "Disabled" column had incorrect size and skewed the header

This commit is contained in:
Andrew Grande 2018-02-15 13:47:07 -05:00 committed by Pierre Villard
parent 1911635a3a
commit 2fd24b78e6
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ public class ProcessGroupsResult extends AbstractWritableResult<List<ProcessGrou
.column("Id", 36, 36, false)
.column("Running", 7, 7, false)
.column("Stopped", 7, 7, false)
.column("Disabled", 7, 7, false)
.column("Disabled", 8, 8, false)
.column("Invalid", 7, 7, false)
.build();