Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Nov 9, 2024
1 parent 82f128e commit 0cd7c45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/Legacy/V1/Resources/ConfigurationResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ public function toArray($request): array
'local_takestamp_video_formats' => Configs::getValueAsString('local_takestamp_video_formats'),
'log_max_num_line' => Configs::getValueAsInt('log_max_num_line'),
'lossless_optimization' => Configs::getValueAsBool('lossless_optimization'),
'low_quality_image_placeholder' => Configs::getValueAsBool('low_quality_image_placeholder'),
'medium_2x' => Configs::getValueAsBool('medium_2x'),
'medium_max_height' => Configs::getValueAsInt('medium_max_height'),
'medium_max_width' => Configs::getValueAsInt('medium_max_width'),
Expand Down
3 changes: 3 additions & 0 deletions resources/js/utils/StatsSizeVariantToColours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ export function sizeVariantToColour(sv: App.Enum.SizeVariantType): string {
// thumb
case 6:
return documentStyle.getPropertyValue("--p-sky-100");
// placeholder
case 7:
return documentStyle.getPropertyValue("--p-sky-50");
}
}

Expand Down

0 comments on commit 0cd7c45

Please sign in to comment.