We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ff6406 commit 01d711eCopy full SHA for 01d711e
1 file changed
include/init/update.php
@@ -260,15 +260,15 @@
260
<div class="card card-body bg-light mb-3">
261
<div class="row" id="updates-list">';
262
263
- // Dividi gli aggiornamenti in 3 colonne
+ // Dividi gli aggiornamenti in 4 colonne
264
$total_updates = count($updates);
265
- $updates_per_column = ceil($total_updates / 3);
+ $updates_per_column = ceil($total_updates / 4);
266
$column_updates = array_chunk($updates, $updates_per_column);
267
268
// Per ogni colonna
269
for ($col = 0; $col < count($column_updates); $col++) {
270
$updates_html .= '
271
- <div class="col-md-4">
+ <div class="col-md-3">
272
<ul class="list-unstyled mb-0">';
273
274
// Per ogni aggiornamento nella colonna
0 commit comments