Skip to content

Commit ee4d523

Browse files
committed
Fix #57
1 parent 2b2c4f0 commit ee4d523

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

assets/js/scripts.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -253,13 +253,6 @@ if (search_form) {
253253
submit_search.click();
254254
}
255255
});
256-
257-
document.addEventListener('keydown', e => {
258-
if (e.key === '/') {
259-
e.preventDefault();
260-
search_key.focus();
261-
}
262-
});
263256
}
264257

265258
/**

src/Admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use RobiNN\Pca\Dashboards\DashboardInterface;
1212

1313
class Admin {
14-
public const VERSION = '2.3.2';
14+
public const VERSION = '2.3.3';
1515

1616
private readonly Template $template;
1717

templates/partials/keys_list.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
{% if all_keys != 0 %}
1818
<div>
1919
<div class="flex" id="search_form">
20-
<input type="text" id="search_key" value="{{ search_value }}" placeholder="( / ) Search..." aria-label="( / ) Search..."
20+
<input type="text" id="search_key" value="{{ search_value }}" placeholder="Search..." aria-label="Search..."
2121
class="w-full md:w-72 rounded-l border border-gray-300 bg-white py-1.5 px-3 text-sm
2222
focus:outline-hidden focus:ring-3 focus:ring-primary-200 focus:border-primary-300
2323
dark:border-gray-600 dark:bg-gray-800 dark:text-white dark:placeholder-gray-400

0 commit comments

Comments
 (0)