diff --git a/workbench/frontend/src/app/common/components/resource-query/resource-query.component.ts b/workbench/frontend/src/app/common/components/resource-query/resource-query.component.ts index 4d1476b..86525dd 100644 --- a/workbench/frontend/src/app/common/components/resource-query/resource-query.component.ts +++ b/workbench/frontend/src/app/common/components/resource-query/resource-query.component.ts @@ -211,8 +211,8 @@ export class ResourceQueryComponent implements OnInit, OnDestroy { } }; - updateCondition('resource.crowdType LIKE \'Crowd\'\n\tAND ', this.crowdChecked); - updateCondition('resource.crowdType LIKE \'Non_Crowd\'\n\tAND ', this.internalChecked); + updateCondition('resource.crowdType LIKE \'CROWD\'\n\tAND ', this.crowdChecked); + updateCondition('resource.crowdType LIKE \'NON_CROWD\'\n\tAND ', this.internalChecked); } private insertTextAfterWhere(input: string, newText: string): string {