@d-mok/quasar-app-extension-quasar-axe 4.0.3 → 4.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-mok/quasar-app-extension-quasar-axe",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "A Quasar App Extension",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -249,6 +249,7 @@ export function ORM<
249
249
  .from(tableName)
250
250
  .delete()
251
251
  .eq(idKey, idVal as any)
252
+ .select(fields)
252
253
  .single()
253
254
  .then(handleError)
254
255