diff options
author | Dirk Brenken <dev@brenken.org> | 2020-03-02 20:59:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 20:59:42 +0100 |
commit | 95804e5eaf917b2026f50ec262c3bae711a6b317 (patch) | |
tree | c93250f998b4db97424e7b842d35a23a01074067 /applications | |
parent | 65f33449c48952586afc3a97417bbf29c42c605b (diff) | |
parent | 872693761117238aa5caff0408612a7467bb6a89 (diff) |
Merge pull request #3688 from stefansundin/luci-app-adblock-fix-enter
luci-app-adblock query form: Fix enter key submitting form but not showing any results
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-adblock/luasrc/view/adblock/query.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-adblock/luasrc/view/adblock/query.htm b/applications/luci-app-adblock/luasrc/view/adblock/query.htm index 88108c3f21..fb659958db 100644 --- a/applications/luci-app-adblock/luasrc/view/adblock/query.htm +++ b/applications/luci-app-adblock/luasrc/view/adblock/query.htm @@ -43,7 +43,7 @@ This is free software, licensed under the Apache License, Version 2.0 //]]> </script> -<form method="post" action="<%=REQUEST_URI%>"> +<form method="post" action="<%=REQUEST_URI%>" onsubmit="update_status(this.input); return false;"> <div class="cbi-map"> <div class="cbi-section"> <div class="cbi-section-descr"><%:This form allows you to query active block lists for certain domains, e.g. for whitelisting.%></div> |