Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
069bb4c2
Commit
069bb4c2
authored
Jun 18, 2021
by
Piotr Gawron
Browse files
disable chrome autofill in datatable search
parent
e33134fd
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
069bb4c2
...
...
@@ -22,6 +22,7 @@ minerva (16.0.0~beta.1) stable; urgency=medium
*
Bug
fix
:
export
model
as
model
could
cause
an
issue
(#
1500
,
#
1502
)
*
Bug
fix
:
problem
with
export
as
image
with
data
overlays
(#
1503
,
#
1498
,
#
1496
)
*
Bug
fix
:
chrom
autofill
is
disabled
for
"Search: "
in
admin
panel
tables
--
Piotr
Gawron
<
piotr
.
gawron
@
uni
.
lu
>
Wed
,
9
Jun
2021
15
:
00
:
00
+
0200
...
...
frontend-js/src/main/js/Admin.js
View file @
069bb4c2
...
...
@@ -128,6 +128,8 @@ Admin.prototype.init = function () {
return
Promise
.
all
(
promises
).
then
(
function
()
{
$
(
window
).
trigger
(
'
resize
'
);
}).
then
(
function
()
{
$
(
"
div.dataTables_filter
"
).
wrap
(
"
<form>
"
);
$
(
"
div.dataTables_filter
"
).
closest
(
"
form
"
).
attr
(
"
autocomplete
"
,
"
off
"
);
return
self
.
checkAvailableVersion
();
});
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment