We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe87d37 commit 426ba73Copy full SHA for 426ba73
src/services/SPService.ts
@@ -71,7 +71,7 @@ export default class SPService implements ISPService {
71
var filteredLists = filter(result.value, (aList: ISPList) => {
72
debugger;
73
return find(aList.ContentTypes, (ct) => {
74
- return ct.Id.StringValue.startsWith(options.contentTypeId);
+ return ct.Id.StringValue.toUpperCase().startsWith(options.contentTypeId.toUpperCase());
75
});
76
77
0 commit comments