Fix non-related lint issue that slipped in
This commit is contained in:
parent
eb11b7142a
commit
c988c25d05
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue