diff --git a/packages/bruno-app/src/components/RequestPane/Assertions/StyledWrapper.js b/packages/bruno-app/src/components/RequestPane/Assertions/StyledWrapper.js index 4d7aafe3e..db0a36e58 100644 --- a/packages/bruno-app/src/components/RequestPane/Assertions/StyledWrapper.js +++ b/packages/bruno-app/src/components/RequestPane/Assertions/StyledWrapper.js @@ -4,7 +4,6 @@ const Wrapper = styled.div` table { width: 100%; border-collapse: collapse; - font-weight: 600; table-layout: fixed; thead, @@ -16,6 +15,7 @@ const Wrapper = styled.div` color: ${(props) => props.theme.table.thead.color}; font-size: 0.8125rem; user-select: none; + font-weight: 600; } td { padding: 6px 10px; diff --git a/packages/bruno-app/src/components/RequestPane/QueryEditor/index.js b/packages/bruno-app/src/components/RequestPane/QueryEditor/index.js index 2be742348..bf9f99b42 100644 --- a/packages/bruno-app/src/components/RequestPane/QueryEditor/index.js +++ b/packages/bruno-app/src/components/RequestPane/QueryEditor/index.js @@ -217,8 +217,9 @@ export default class QueryEditor extends React.Component { diff --git a/packages/bruno-tests/collection/graphql/spacex.bru b/packages/bruno-tests/collection/graphql/spacex.bru new file mode 100644 index 000000000..c5b86466a --- /dev/null +++ b/packages/bruno-tests/collection/graphql/spacex.bru @@ -0,0 +1,24 @@ +meta { + name: spacex + type: graphql + seq: 1 +} + +post { + url: https://spacex-production.up.railway.app/ + body: graphql + auth: none +} + +body:graphql { + { + company { + ceo + } + } + +} + +assert { + res.status: eq 200 +}