fix: includes '-' as filter option for each filter

This commit is contained in:
2025-08-04 14:49:22 -05:00
parent c9cfa5e427
commit a7273cf2e5
4 changed files with 12 additions and 7 deletions

View File

@@ -18,7 +18,7 @@ class ResolutionList
public static function asSelectOptions(): array
{
$result = [];
$result = ['-' => '-'];
foreach (static::$resolutions as $resolution) {
$result[$resolution] = $resolution;
}