fix: pint

This commit is contained in:
Benjamin Nussbaum 2025-09-15 19:24:31 +02:00
parent e65473f932
commit 88e10101b8
3 changed files with 50 additions and 31 deletions

View file

@ -27,10 +27,10 @@ final class DeviceModel extends Model
public function getColorDepthAttribute(): ?string
{
if (! $this->bit_depth){
if (! $this->bit_depth) {
return null;
}
return $this->bit_depth . 'bit';
return $this->bit_depth.'bit';
}
}