Skip to content

Commit

Permalink
Chore: Hotfix release 9.3.2 (#2898)
Browse files Browse the repository at this point in the history
  • Loading branch information
ElinorW committed Nov 14, 2023
1 parent 6650770 commit c45cca1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "graph-explorer-v2",
"version": "9.3.1",
"version": "9.3.2",
"private": true,
"dependencies": {
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",
Expand Down
25 changes: 14 additions & 11 deletions src/app/views/query-runner/request/Request.tsx
Expand Up @@ -27,8 +27,7 @@ const Request = (props: any) => {
const maxHeight = 800;

const {
handleOnEditorChange,
intl: { messages }
handleOnEditorChange
}: any = props;

useEffect(() => {
Expand All @@ -55,27 +54,29 @@ const Request = (props: any) => {
key='request-body'
itemIcon='Send'
itemKey='request-body' // To be used to construct component name for telemetry data
ariaLabel={messages['request body']}
headerText={messages['request body']}
ariaLabel={translateMessage('request body')}
headerText={translateMessage('request body')}
title={translateMessage('request body')}
headerButtonProps={{
'aria-controls': 'request-body-tab'
}}
>
<div style={containerStyle} id={'request-body-tab'}>
<div style={containerStyle} id={'request-body-tab'} tabIndex={0}>
<RequestBody handleOnEditorChange={handleOnEditorChange} />
</div>
</PivotItem>,
<PivotItem
key='request-headers'
itemIcon='FileComment'
itemKey='request-headers'
ariaLabel={messages['request header']}
headerText={messages['request header']}
ariaLabel={translateMessage('request header')}
headerText={translateMessage('request header')}
title={translateMessage('request header')}
headerButtonProps={{
'aria-controls': 'request-header-tab'
}}
>
<div style={containerStyle} id={'request-header-tab'}>
<div style={containerStyle} id={'request-header-tab'} tabIndex={0}>
<RequestHeaders />
</div>
</PivotItem>,
Expand All @@ -84,12 +85,13 @@ const Request = (props: any) => {
itemIcon='AzureKeyVault'
itemKey='modify-permissions'
ariaLabel={translateMessage('modify permissions')}
headerText={messages['modify permissions']}
headerText={translateMessage('modify permissions')}
title={translateMessage('modify permissions')}
headerButtonProps={{
'aria-controls': 'permission-tab'
}}
>
<div style={containerStyle} id={'permission-tab'}>
<div style={containerStyle} id={'permission-tab'} tabIndex={0}>
<Permissions />
</div>
</PivotItem>
Expand All @@ -102,10 +104,11 @@ const Request = (props: any) => {
itemKey='access-token'
ariaLabel={translateMessage('Access Token')}
headerText={translateMessage('Access Token')}
title={translateMessage('Access Token')}
headerButtonProps={{
'aria-controls': 'access-token-tab'
}}>
<div style={containerStyle} id={'access-token-tab'}>
<div style={containerStyle} id={'access-token-tab'} tabIndex={0}>
<Auth />
</div>
</PivotItem>
Expand Down

0 comments on commit c45cca1

Please sign in to comment.