add blank space

This commit is contained in:
Henry
2023-06-30 14:00:57 +01:00
parent 4796d84b50
commit 55489c1c77
+1
View File
@@ -194,6 +194,7 @@ export class App {
.createQueryBuilder('cf') .createQueryBuilder('cf')
.where('cf.apikeyid = :apikeyid', { apikeyid: apiKey.id }) .where('cf.apikeyid = :apikeyid', { apikeyid: apiKey.id })
.orWhere('cf.apikeyid IS NULL') .orWhere('cf.apikeyid IS NULL')
.orWhere('cf.apikeyid = ""')
.orderBy('cf.name', 'ASC') .orderBy('cf.name', 'ASC')
.getMany() .getMany()
if (chatflows.length >= 1) return res.status(200).send(chatflows) if (chatflows.length >= 1) return res.status(200).send(chatflows)