Skip to content

Commit

Permalink
caps in SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
Davo00 committed Nov 22, 2023
1 parent d9a0edc commit 63ca598
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 63ca598

Please sign in to comment.