mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-21 23:43:15 +01:00
Merge branch 'build' into feature/binary-response-in-tests
This commit is contained in:
commit
10a11c710c
@ -40,7 +40,7 @@ const CollectionSettings = ({ collection }) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
const root = collection?.root;
|
const root = collection?.root;
|
||||||
const hasScripts = root?.request?.script.res || root?.request?.script.req;
|
const hasScripts = root?.request?.script?.res || root?.request?.script?.req;
|
||||||
const hasTests = root?.request?.tests;
|
const hasTests = root?.request?.tests;
|
||||||
const hasDocs = root?.docs;
|
const hasDocs = root?.docs;
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@ const FolderSettings = ({ collection, folder }) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const folderRoot = collection?.items.find((item) => item.uid === folder?.uid)?.root;
|
const folderRoot = collection?.items.find((item) => item.uid === folder?.uid)?.root;
|
||||||
const hasScripts = folderRoot?.request?.script.res || folderRoot?.request?.script.req;
|
const hasScripts = folderRoot?.request?.script?.res || folderRoot?.request?.script?.req;
|
||||||
const hasTests = folderRoot?.request?.tests;
|
const hasTests = folderRoot?.request?.tests;
|
||||||
|
|
||||||
const headers = folderRoot?.request?.headers || [];
|
const headers = folderRoot?.request?.headers || [];
|
||||||
|
@ -184,7 +184,7 @@ const Sidebar = () => {
|
|||||||
Star
|
Star
|
||||||
</GitHubButton> */}
|
</GitHubButton> */}
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-grow items-center justify-end text-xs mr-2">v1.34.1</div>
|
<div className="flex flex-grow items-center justify-end text-xs mr-2">v1.34.2</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -60,7 +60,7 @@ const trackStart = () => {
|
|||||||
event: 'start',
|
event: 'start',
|
||||||
properties: {
|
properties: {
|
||||||
os: platformLib.os.family,
|
os: platformLib.os.family,
|
||||||
version: '1.34.1'
|
version: '1.34.2'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "v1.34.1",
|
"version": "v1.34.2",
|
||||||
"name": "bruno",
|
"name": "bruno",
|
||||||
"description": "Opensource API Client for Exploring and Testing APIs",
|
"description": "Opensource API Client for Exploring and Testing APIs",
|
||||||
"homepage": "https://www.usebruno.com",
|
"homepage": "https://www.usebruno.com",
|
||||||
|
Loading…
Reference in New Issue
Block a user