Merge branch 'QA_5_1'

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2021-05-10 23:25:07 +02:00
commit e98fe129d2
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
3 changed files with 4 additions and 2 deletions

View File

@ -112,6 +112,8 @@ phpMyAdmin - ChangeLog
- issue #16871 Fixed PHP and JS errors on normalization steps
- issue Fixed CSS missing classes on normalization buttons
- issue #16437 Fixed sticky top position when using smaller screen sizes
- issue #16895 Fixed wrong table count on space separated numbers
- issue #16882 Fixed table delete resets count to 0
5.1.0 (2021-02-24)
- issue #15350 Change Media (MIME) type references to Media type

View File

@ -70,7 +70,7 @@ DatabaseStructure.adjustTotals = function () {
// The approximated value contains a preceding ~ (Eg 100 --> ~100)
strRows = strRows.substring(1, strRows.length);
}
strRows = strRows.replace(/[,.]/g, '');
strRows = strRows.replace(/[,.\s]/g, '');
var intRow = parseInt(strRows, 10);
if (! isNaN(intRow)) {
rowsSum += intRow;

View File

@ -1,7 +1,7 @@
<form method="post" action="{{ url('/database/structure') }}" name="tablesForm" id="tablesForm">
{{ get_hidden_inputs(db) }}
<div class="table-responsive">
<table class="table table-light table-striped table-hover table-sm w-auto">
<table class="table table-light table-striped table-hover table-sm w-auto data">
<thead class="table-light">
<tr>
<th class="d-print-none"></th>