fix params passed during tag deletion (#547)

Co-authored-by: Pearl Dsilva <pearl.dsilva@shapeblue.com>
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Pearl Dsilva 2020-07-27 13:13:00 +05:30 committed by Rohit Yadav
parent 7b4ad728f2
commit e2e638e7a6

View File

@ -801,8 +801,8 @@ export default {
},
handleDeleteTag (tag) {
const args = {}
args.resourceids = tag.resourceid
args.resourcetype = tag.resourcetype
args.resourceids = this.resource.id
args.resourcetype = this.resourceType
args['tags[0].key'] = tag.key
args['tags[0].value'] = tag.value
api('deleteTags', args).then(json => {