Update targetId type to number

This commit is contained in:
2026-08-08 16:39:00 +01:00
parent 44ec3d4c11
commit b8e9ab07f2
7 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export default async function DbUpdate({ table, data, query, targetId, config, }
finalQuery = _.merge(finalQuery, {
query: {
id: {
value: String(targetId),
value: Number(targetId),
},
},
});