Skip to content

Commit

Permalink
Fix log play modal tab index
Browse files Browse the repository at this point in the history
  • Loading branch information
leepeuker committed Feb 9, 2023
1 parent 02a42ca commit b1f9a16
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion templates/component/modal-log-play.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,19 @@
<div class="modal-body">
<div id="logPlayModalSearchDiv">
<div class="input-group">
<input type="text" class="form-control" placeholder="Search" value="{{ (searchTerm is null) ? '' : searchTerm }}" id="logPlayModalSearchInput">
<input type="text"
class="form-control"
placeholder="Search"
value="{{ (searchTerm is null) ? '' : searchTerm }}"
id="logPlayModalSearchInput"
tabindex="0"
style="order:1">
<button class="btn btn-primary"
type="submit"
onclick="searchTmdbWithLogModalSearchInput()"
id="logPlayModalSearchButton"
tabindex="0"
style="order:2"
disabled>
<i class="bi bi-search"></i>
</button>
Expand Down

0 comments on commit b1f9a16

Please sign in to comment.