Merge pull request #12186 from Budibase/fix/row-id-delete-parsing
Fix to ensure single integer ids are parsed correctly in the delete rows action
This commit is contained in:
commit
be269265f8
|
@ -103,7 +103,6 @@ const fetchRowHandler = async action => {
|
|||
|
||||
const deleteRowHandler = async action => {
|
||||
const { tableId, rowId: rowConfig, notificationOverride } = action.parameters
|
||||
|
||||
if (tableId && rowConfig) {
|
||||
try {
|
||||
let requestConfig
|
||||
|
@ -129,9 +128,11 @@ const deleteRowHandler = async action => {
|
|||
requestConfig = [parsedRowConfig]
|
||||
} else if (Array.isArray(parsedRowConfig)) {
|
||||
requestConfig = parsedRowConfig
|
||||
} else if (Number.isInteger(parsedRowConfig)) {
|
||||
requestConfig = [String(parsedRowConfig)]
|
||||
}
|
||||
|
||||
if (!requestConfig.length) {
|
||||
if (!requestConfig && !parsedRowConfig) {
|
||||
notificationStore.actions.warning("No valid rows were supplied")
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue