Skip to content

Commit

Permalink
Merge pull request #5404 from dlubitz/90/bugfix/export-image-variant
Browse files Browse the repository at this point in the history
BUGFIX: Allow width and height to be empty on export
  • Loading branch information
kitsunet authored Dec 16, 2024
2 parents 4641a53 + 796db96 commit bb8d771
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ private function __construct(
public string $identifier,
public string $originalAssetIdentifier,
public string $name,
public int $width,
public int $height,
public ?int $width,
public ?int $height,
public ?string $presetIdentifier,
public ?string $presetVariantName,
public SerializedImageAdjustments $imageAdjustments,
Expand Down

0 comments on commit bb8d771

Please sign in to comment.