Revert "#11458 fixed visual console when setting background none"

This reverts commit 635518eae9.
This commit is contained in:
Daniel Cebrian 2023-06-05 15:16:28 +02:00
parent 635518eae9
commit d72959fa7b
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ final class Container extends Model
null
);
return ($backgroundImage === 'None.png' || $backgroundImage === null) ? null : str_replace(' ', '%20', $backgroundImage);
return ($backgroundImage === 'None.png') ? null : str_replace(' ', '%20', $backgroundImage);
}