Skip to content

Commit

Permalink
enable fullPage if only fullPageConfig exists
Browse files Browse the repository at this point in the history
  • Loading branch information
paweltomaszewskisaucelabs committed Apr 2, 2024
1 parent 9c49a79 commit 0e18859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visual-dotnet/SauceLabs.Visual/VisualCheckOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public FullPageConfig? FullPageConfig
{
get
{
return _fullPageConfig ?? (FullPage == true ? new FullPageConfig() : null);
return FullPage != false ? _fullPageConfig ?? new FullPageConfig() : null;
}
set
{
Expand Down

0 comments on commit 0e18859

Please sign in to comment.