Fixed issue with logs graph not showing level names

This commit is contained in:
Torkel Ödegaard 2019-02-11 10:01:43 +01:00
parent 58e57a1669
commit 3bf0a5ffc6

View File

@ -340,6 +340,11 @@ export function makeSeriesForLogs(rows: LogRowModel[], intervalMs: number): Time
return a[1] - b[1];
});
return { datapoints: series.datapoints, target: series.alias, color: series.color };
return {
datapoints: series.datapoints,
target: series.alias,
alias: series.alias,
color: series.color
};
});
}