mirror of
https://github.com/usebruno/bruno.git
synced 2025-06-25 06:21:57 +02:00
fix: query url overflowing (#2804)
* fix: query url overflowing * fix: add margin to save btn instead of singlelineeditor
This commit is contained in:
parent
7e305be817
commit
0d3e7acf9b
@ -74,7 +74,7 @@ const QueryUrl = ({ item, collection, handleRun }) => {
|
|||||||
/>
|
/>
|
||||||
<div className="flex items-center h-full mr-2 cursor-pointer" id="send-request" onClick={handleRun}>
|
<div className="flex items-center h-full mr-2 cursor-pointer" id="send-request" onClick={handleRun}>
|
||||||
<div
|
<div
|
||||||
className="tooltip mr-3"
|
className="tooltip mx-3"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
if (!item.draft) return;
|
if (!item.draft) return;
|
||||||
|
@ -174,7 +174,7 @@ class SingleLineEditor extends Component {
|
|||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-row justify-between w-full">
|
<div className="flex flex-row justify-between w-full overflow-x-auto">
|
||||||
<StyledWrapper ref={this.editorRef} className="single-line-editor grow" />
|
<StyledWrapper ref={this.editorRef} className="single-line-editor grow" />
|
||||||
{this.secretEye(this.props.isSecret)}
|
{this.secretEye(this.props.isSecret)}
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user