mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 01:08:28 +02:00
Fix loading state
This commit is contained in:
@@ -368,7 +368,7 @@ export const RequestPane = memo(function RequestPane({
|
|||||||
onMethodChange={handleMethodChange}
|
onMethodChange={handleMethodChange}
|
||||||
onUrlChange={handleUrlChange}
|
onUrlChange={handleUrlChange}
|
||||||
forceUpdateKey={updateKey}
|
forceUpdateKey={updateKey}
|
||||||
isLoading={activeResponse?.state !== 'closed'}
|
isLoading={activeResponse != null && activeResponse.state !== 'closed'}
|
||||||
/>
|
/>
|
||||||
<Tabs
|
<Tabs
|
||||||
key={activeRequest.id} // Freshen tabs on request change
|
key={activeRequest.id} // Freshen tabs on request change
|
||||||
|
|||||||
Reference in New Issue
Block a user