mirror of
https://github.com/usebruno/bruno.git
synced 2025-02-22 12:41:37 +01:00
Changes from review
This commit is contained in:
parent
25af7a211a
commit
bab12d7894
@ -23,9 +23,7 @@ const QueryResultFilter = ({ onChange, mode }) => {
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{tooltipText && typeof tooltipText === 'string' && (
|
||||
<ReactTooltip anchorId={'request-filter-icon'} html={tooltipText} />
|
||||
)}
|
||||
{tooltipText && <ReactTooltip anchorId={'request-filter-icon'} html={tooltipText} />}
|
||||
|
||||
<input
|
||||
type="text"
|
||||
|
@ -3,8 +3,7 @@ import styled from 'styled-components';
|
||||
const StyledWrapper = styled.div`
|
||||
display: grid;
|
||||
grid-template-columns: 100%;
|
||||
grid-template-rows: ${(props) =>
|
||||
props.queryFilterEnabled ? '1.25rem calc(100% - 3.5rem)' : '1.25rem calc(100% - 1.25rem)'};
|
||||
grid-template-rows: ${(props) => (props.queryFilterEnabled ? '1.25rem 1fr 2.25rem' : '1.25rem 1fr')};
|
||||
|
||||
/* This is a hack to force Codemirror to use all available space */
|
||||
> div {
|
||||
|
Loading…
Reference in New Issue
Block a user