1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Correzioni in importazione FE

Correzioni per #918 e #921.
This commit is contained in:
Dasc3er
2021-01-08 14:35:53 +01:00
parent 888f255761
commit 1a32685ac4
4 changed files with 7 additions and 9 deletions

View File

@ -83,7 +83,7 @@ if (!empty($query)) {
$value = trim($value);
// Allineamento a destra se il valore della prima riga risulta numerica
if (formatter()->isStandardNumber($value)) {
if (is_numeric($value) && formatter()->isStandardNumber($value)) {
$align[$field] = 'text-right';
}