Undo this commit when ready

pull/10616/head
Alex P 2018-06-21 17:46:54 -07:00 committed by Iris Scholten
parent 172218e7a7
commit f3405439e9
1 changed files with 3 additions and 3 deletions

View File

@ -327,12 +327,12 @@ class LogsPage extends PureComponent<Props, State> {
}
private handleUpdateSeverityLevels = (levels: SeverityLevel[]) => {
console.log(levels)
console.log(levels) // tslint:disable-line
// Todo: Handle saving of these new severity colors here
}
private handleUpdateSeverityFormat = (format: SeverityFormat) => {
console.log(format)
console.log(format) // tslint:disable-line
// Todo: Handle saving of the new format here
}
@ -345,7 +345,7 @@ class LogsPage extends PureComponent<Props, State> {
}
private handleUpdateColumns = (columns: LogsTableColumn[]) => {
console.log(columns)
console.log(columns) // tslint:disable-line
// Todo: Handle saving of column names, ordering, and visibility
}
}