Fix non-related lint issue that slipped in

This commit is contained in:
Adam Gastineau 2025-02-20 12:39:59 -08:00
parent eb11b7142a
commit c988c25d05

View file

@ -72,7 +72,7 @@ export function useConsoleTabModel(model: modelUtil.MultiTraceModel | undefined,
const aTimestamp = 'time' in a ? a.time : a.timestamp; const aTimestamp = 'time' in a ? a.time : a.timestamp;
const bTimestamp = 'time' in b ? b.time : b.timestamp; const bTimestamp = 'time' in b ? b.time : b.timestamp;
return aTimestamp - bTimestamp; return aTimestamp - bTimestamp;
}) });
for (const event of logEvents) { for (const event of logEvents) {
if (event.type === 'console') { if (event.type === 'console') {
const body = event.args && event.args.length ? format(event.args) : formatAnsi(event.text); const body = event.args && event.args.length ? format(event.args) : formatAnsi(event.text);