chore: SQLLab row limit warning using Alert component (#14298)
This commit is contained in:
parent
38a7c537ff
commit
86233d1676
|
|
@ -506,7 +506,9 @@ export default class ResultSet extends React.PureComponent<
|
|||
const limitReached = results?.displayLimitReached;
|
||||
return (
|
||||
<ReturnedRows>
|
||||
{!limitReached && <span>{t(`%s rows returned`, rows)}</span>}
|
||||
{!limitReached && (
|
||||
<Alert type="warning" message={t(`%s rows returned`, rows)} />
|
||||
)}
|
||||
{limitReached && (
|
||||
<Alert
|
||||
type="warning"
|
||||
|
|
|
|||
Loading…
Reference in New Issue