mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-03-07 06:23:34 +02:00
Misc updates, crates, rust, js, gha, vault (#6799)
This commit is contained in:
committed by
GitHub
parent
feecfb20da
commit
d09c45bb63
4
src/static/scripts/datatables.css
vendored
4
src/static/scripts/datatables.css
vendored
@@ -4,10 +4,10 @@
|
||||
*
|
||||
* To rebuild or modify this file with the latest versions of the included
|
||||
* software please visit:
|
||||
* https://datatables.net/download/#bs5/dt-2.3.6
|
||||
* https://datatables.net/download/#bs5/dt-2.3.7
|
||||
*
|
||||
* Included libraries:
|
||||
* DataTables 2.3.6
|
||||
* DataTables 2.3.7
|
||||
*/
|
||||
|
||||
:root {
|
||||
|
||||
16
src/static/scripts/datatables.js
vendored
16
src/static/scripts/datatables.js
vendored
@@ -4,13 +4,13 @@
|
||||
*
|
||||
* To rebuild or modify this file with the latest versions of the included
|
||||
* software please visit:
|
||||
* https://datatables.net/download/#bs5/dt-2.3.6
|
||||
* https://datatables.net/download/#bs5/dt-2.3.7
|
||||
*
|
||||
* Included libraries:
|
||||
* DataTables 2.3.6
|
||||
* DataTables 2.3.7
|
||||
*/
|
||||
|
||||
/*! DataTables 2.3.6
|
||||
/*! DataTables 2.3.7
|
||||
* © SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
|
||||
@@ -460,7 +460,7 @@
|
||||
if ( tfoot.length === 0 ) {
|
||||
// If we are a scrolling table, and no footer has been given, then we need to create
|
||||
// a tfoot element for the caption element to be appended to
|
||||
tfoot = $('<tfoot/>').insertAfter(thead);
|
||||
tfoot = $('<tfoot/>').appendTo($this);
|
||||
}
|
||||
oSettings.nTFoot = tfoot[0];
|
||||
|
||||
@@ -525,7 +525,7 @@
|
||||
*
|
||||
* @type string
|
||||
*/
|
||||
builder: "bs5/dt-2.3.6",
|
||||
builder: "bs5/dt-2.3.7",
|
||||
|
||||
/**
|
||||
* Buttons. For use with the Buttons extension for DataTables. This is
|
||||
@@ -8896,6 +8896,10 @@
|
||||
return null;
|
||||
}
|
||||
|
||||
if (col.responsiveVisible === false) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// Selector
|
||||
if (match[1]) {
|
||||
return $(nodes[idx]).filter(match[1]).length > 0 ? idx : null;
|
||||
@@ -10300,7 +10304,7 @@
|
||||
* @type string
|
||||
* @default Version number
|
||||
*/
|
||||
DataTable.version = "2.3.6";
|
||||
DataTable.version = "2.3.7";
|
||||
|
||||
/**
|
||||
* Private data store, containing all of the settings objects that are
|
||||
|
||||
Reference in New Issue
Block a user