mirror of
https://github.com/apache/superset.git
synced 2026-04-19 08:04:53 +00:00
style(sqllab): wrap text in monospace db-provided error messages (#11354)
This commit is contained in:
committed by
GitHub
parent
f6436b7652
commit
69046f08d4
@@ -57,9 +57,14 @@ interface ResultSetState {
|
||||
data: Record<string, any>[];
|
||||
}
|
||||
|
||||
// Making text render line breaks/tabs as is as monospace,
|
||||
// but wrapping text too so text doesn't overflow
|
||||
const MonospaceDiv = styled.div`
|
||||
font-family: ${({ theme }) => theme.typography.families.monospace};
|
||||
white-space: pre;
|
||||
word-break: break-word;
|
||||
overflow-x: auto;
|
||||
white-space: pre-wrap;
|
||||
`;
|
||||
|
||||
export default class ResultSet extends React.PureComponent<
|
||||
|
||||
Reference in New Issue
Block a user