Skip to content

Commit

Permalink
avniproject/avni-webapp#1214 | Include Mandatory field prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
himeshr committed Aug 16, 2024
1 parent 7942e7c commit fb90c13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ private List<String> constructSyncAttributeAllowedValuesForSubjectType(SubjectTy

return Arrays.stream(syncAttributes).
filter(Objects::nonNull).sorted().
map(sa -> String.format("\"Allowed values: %s\"", conceptService.getSampleValuesForSyncConcept(conceptService.get(sa))))
map(sa -> String.format("\"Mandatory field. Allowed values: %s\"", conceptService.getSampleValuesForSyncConcept(conceptService.get(sa))))
.collect(Collectors.toList());
}

Expand Down

0 comments on commit fb90c13

Please sign in to comment.