Minor adjustment on tags to allow comma separated/etc.
This commit is contained in:
@@ -528,8 +528,8 @@ module.exports = class FileEntry {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(filter.tags && filter.tags.length > 0) {
|
if(filter.tags && filter.tags.length > 0) {
|
||||||
// build list of quoted tags; filter.tags comes in as a space separated values
|
// build list of quoted tags; filter.tags comes in as a space and/or comma separated values
|
||||||
const tags = filter.tags.split(' ').map( tag => `"${tag}"` ).join(',');
|
const tags = filter.tags.replace(/,/g, ' ').replace(/\s{2,}/g, ' ').split(' ').map( tag => `"${tag}"` ).join(',');
|
||||||
|
|
||||||
appendWhereClause(
|
appendWhereClause(
|
||||||
`f.file_id IN (
|
`f.file_id IN (
|
||||||
|
|||||||
Reference in New Issue
Block a user