File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ module.exports = function defineProject(sequelize, DataTypes) {
117
117
query += 'AND projects.status IN (:status) ' ;
118
118
replacements . status = statusFilter . $in ;
119
119
} else if ( _ . isString ( statusFilter ) ) {
120
- query += 'AND projects.status = :status' ;
120
+ query += 'AND projects.status = :status ' ;
121
121
replacements . status = statusFilter ;
122
122
}
123
123
}
@@ -126,7 +126,7 @@ module.exports = function defineProject(sequelize, DataTypes) {
126
126
replacements . type = parameters . filters . type ;
127
127
}
128
128
if ( _ . has ( parameters . filters , 'keyword' ) ) {
129
- query += 'AND projects."projectFullText" ~ lower(:keyword)' ;
129
+ query += 'AND projects."projectFullText" ~ lower(:keyword) ' ;
130
130
replacements . keyword = parameters . filters . keyword ;
131
131
}
132
132
if ( _ . has ( parameters . filters , 'name' ) ) {
You can’t perform that action at this time.
0 commit comments