fix: folder settings var panel table alignment (#6631)

This commit is contained in:
gopu-bruno
2026-01-02 18:48:26 +05:30
committed by GitHub
parent f90f256f5f
commit bfc8968e24

View File

@@ -14,11 +14,11 @@ const Vars = ({ collection, folder }) => {
return (
<StyledWrapper className="w-full flex flex-col">
<div className="flex-1">
<div>
<div className="mb-3 title text-xs">Pre Request</div>
<VarsTable folder={folder} collection={collection} vars={requestVars} varType="request" />
</div>
<div className="flex-1">
<div>
<div className="mt-3 mb-3 title text-xs">Post Response</div>
<VarsTable folder={folder} collection={collection} vars={responseVars} varType="response" />
</div>