8000 minor #13971 [WebProfiler] Fix partial search on url in list (zerrvox) · symfony/symfony@eda1ab7 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit eda1ab7

Browse files 8000
committed
minor #13971 [WebProfiler] Fix partial search on url in list (zerrvox)
This PR was merged into the 2.6 branch. Discussion ---------- [WebProfiler] Fix partial search on url in list | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Removed the url type from the url form field as browser validation makes it impossible to do partial text search on the url as the browser will not submit the form because it does not validate as a url. Commits ------- c5f1f60 [WebProfiler] Fix partial search on url in list
2 parents 99330cb + c5f1f60 commit eda1ab7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/search.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line number< 7373 /th>Diff line change
@@ -15,7 +15,7 @@
1515
</select>
1616
<div class="clear-fix"></div>
1717
<label for="url">URL</label>
18-
<input type="url" name="url" id="url" value="{{ url }}" placeholder="e.g. {{ request.baseUrl }}">
18+
<input type="text" name="url" id="url" value="{{ url }}" placeholder="e.g. {{ request.baseUrl }}">
1919
<div class="clear-fix"></div>
2020
<label for="token">Token</label>
2121
<input type="text" name="token" id="token" value="{{ token }}" placeholder="e.g. 1f321b">

0 commit comments

Comments
 (0)
0