Skip to content

Commit

Permalink
Add name to nullable param
Browse files Browse the repository at this point in the history
  • Loading branch information
PUXMKU committed Nov 4, 2020
1 parent a495308 commit 3d998ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public LocalizationInputObjectType(IStringLocalizer<LocalizationInputObjectType>
Description = S["the localization part of the content item"];

AddScalarFilterFields<StringGraphType>("culture", S["the culture of the content item to filter"]);
Field(x => x.LocalizationSet, true).Description(S["the localization set of the content item to filter"]);
Field(x => x.LocalizationSet, nullable: true).Description(S["the localization set of the content item to filter"]);
}
}
}

0 comments on commit 3d998ea

Please sign in to comment.