Skip to content

Commit 32f3792

Browse files
Register managed user data using POST call from UI (to support user data content > 4096 bytes) (apache#8487)
This PR allows to register managed user data using POST call from UI (to support user data content > 4096 bytes). Partially fixes apache#8415
1 parent d6ac91f commit 32f3792

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/src/views/compute/RegisterUserData.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ export default {
211211
params.params = userdataparams
212212
}
213213
214-
api('registerUserData', params).then(json => {
214+
api('registerUserData', {}, 'POST', params).then(json => {
215215
this.$message.success(this.$t('message.success.register.user.data') + ' ' + values.name)
216216
}).catch(error => {
217217
this.$notifyError(error)

0 commit comments

Comments
 (0)