fix(ui) - console log underline
This commit is contained in:
parent
0d358b13d9
commit
4943cfd75a
1 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,5 @@
|
|||
import React, { useState } from 'react';
|
||||
import cn from 'classnames';
|
||||
// import stl from '../console.module.css';
|
||||
import { Icon } from 'UI';
|
||||
import JumpButton from 'Shared/DevTools/JumpButton';
|
||||
import { useModal } from 'App/components/Modal';
|
||||
|
|
@ -32,7 +31,8 @@ function ConsoleRow(props: Props) {
|
|||
info: !log.isYellow() && !log.isRed(),
|
||||
warn: log.isYellow(),
|
||||
error: log.isRed(),
|
||||
'cursor-pointer underline decoration-dotted decoration-gray-200': clickable,
|
||||
'cursor-pointer': clickable,
|
||||
'cursor-pointer underline decoration-dotted decoration-gray-200': !!log.errorId,
|
||||
}
|
||||
)}
|
||||
onClick={
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue