Skip to content

Commit 94ac44a

Browse files
committedFeb 27, 2024·
Merge branch 'query-body-parameters-response-calls-fix'
2 parents 0c84a88 + b775f5c commit 94ac44a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎resources/views/themes/elements/endpoint.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ class="sl-overflow-x-hidden sl-truncate sl-text-muted">{{ rtrim($baseUrl, '/') }
175175
<div class="sl-bg-canvas-100 example-request example-request-{{ $language }}"
176176
style="{{ $index == 0 ? '' : 'display: none;' }}">
177177
<div class="sl-px-0 sl-py-1">
178-
<div style="max-height: 400px;" class="sl-rounded">
178+
<div style="max-height: 400px;" class="sl-overflow-y-auto sl-rounded">
179179
@include("scribe::partials.example-requests.$language")
180180
</div>
181181
</div>

‎src/Extracting/Strategies/Responses/ResponseCalls.php

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
use Knuckles\Scribe\Tools\ErrorHandlingUtils as e;
2121
use Knuckles\Scribe\Tools\Globals;
2222
use Knuckles\Scribe\Tools\Utils;
23+
use Knuckles\Scribe\Extracting\Extractor;
2324

2425
/**
2526
* Make a call to the route and retrieve its response.
@@ -46,6 +47,7 @@ public function makeResponseCallIfConditionsPass(ExtractedEndpointData $endpoint
4647

4748
public function makeResponseCall(ExtractedEndpointData $endpointData, array $settings): ?array
4849
{
50+
$settings = array_merge($settings, Extractor::transformOldRouteRulesIntoNewSettings('responses', $settings, ResponseCalls::class));
4951
$this->configureEnvironment($settings);
5052

5153
// Mix in parsed parameters with manually specified parameters.

0 commit comments

Comments
 (0)
Please sign in to comment.