Corrected schedule spelling (#608)

Summary:
Fixed a type in Logs Plugin
Pull Request resolved: https://github.com/facebook/flipper/pull/608

Reviewed By: jknoxville

Differential Revision: D18165001

Pulled By: passy

fbshipit-source-id: 4635ce101abbb0146628235010587d1a9d07db8c
This commit is contained in:
Uma Sankar
2019-10-28 07:34:40 -07:00
committed by Facebook Github Bot
parent 494ffd26b3
commit 61bb537a66

View File

@@ -491,7 +491,7 @@ export default class LogTable extends FlipperDevicePlugin<
this.logListener = this.device.addLogListener((entry: DeviceLogEntry) => { this.logListener = this.device.addLogListener((entry: DeviceLogEntry) => {
const processedEntry = processEntry(entry, String(this.counter++)); const processedEntry = processEntry(entry, String(this.counter++));
this.incrementCounterIfNeeded(processedEntry.entry); this.incrementCounterIfNeeded(processedEntry.entry);
this.scheudleEntryForBatch(processedEntry); this.scheduleEntryForBatch(processedEntry);
}); });
} }
@@ -518,7 +518,7 @@ export default class LogTable extends FlipperDevicePlugin<
} }
}; };
scheudleEntryForBatch = (item: { scheduleEntryForBatch = (item: {
row: TableBodyRow; row: TableBodyRow;
entry: DeviceLogEntry; entry: DeviceLogEntry;
}) => { }) => {