Skip to content

Commit 426ba73

Browse files
committed
compare ct uppercase
1 parent fe87d37 commit 426ba73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/SPService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default class SPService implements ISPService {
7171
var filteredLists = filter(result.value, (aList: ISPList) => {
7272
debugger;
7373
return find(aList.ContentTypes, (ct) => {
74-
return ct.Id.StringValue.startsWith(options.contentTypeId);
74+
return ct.Id.StringValue.toUpperCase().startsWith(options.contentTypeId.toUpperCase());
7575
});
7676

7777
});

0 commit comments

Comments
 (0)