We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70cc55d commit 4c55cc2Copy full SHA for 4c55cc2
ui/src/api/index.js
@@ -47,7 +47,7 @@ export function postAPI (command, data = {}) {
47
params.append('response', 'json')
48
if (data) {
49
Object.entries(data).forEach(([key, value]) => {
50
- if (value !== undefined && value !== null && value !== '') {
+ if (value !== undefined) {
51
params.append(key, value)
52
}
53
})
0 commit comments