fix(loki): Hide empty labels column

Signed-off-by: Steven Sheehy <ssheehy@firescope.com>
This commit is contained in:
Steven Sheehy
2019-03-25 09:23:54 -05:00
committed by David
parent 8dfa1f4c12
commit dd388ed578
4 changed files with 8 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ interface Props {
highlighterExpressions?: string[];
row: LogRowModel;
showDuplicates: boolean;
showLabels: boolean | null; // Tristate: null means auto
showLabels: boolean;
showLocalTime: boolean;
showUtc: boolean;
getRows: () => LogRowModel[];