refs #6276 change to boolean
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Jorge Penadés 2023-12-12 16:00:43 +01:00
parent 7b81630b85
commit 9e6fac9add
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ module.exports = Self => {
},
{
arg: 'isChecked',
type: 'number',
type: 'boolean',
required: true
},
{
@ -85,7 +85,7 @@ module.exports = Self => {
await Self.updateAll(
{saleFk},
{isChecked: 1},
{isChecked: true},
myOptions
);