Skip to content

Commit

Permalink
Merge pull request #49 from kartoza/fix-validation-scenario-priority-…
Browse files Browse the repository at this point in the history
…layers

set selected field as not required
  • Loading branch information
danangmassandy authored Jun 12, 2024
2 parents 651e597 + fded74e commit 0bebde9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_project/cplus_api/serializers/scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class Meta:


class PriorityLayerSerializer(BaseLayerSerializer):
selected = serializers.BooleanField()
selected = serializers.BooleanField(required=False)
groups = GroupSerializer(many=True)

class Meta:
Expand Down

0 comments on commit 0bebde9

Please sign in to comment.