mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[fix] key value aggregation in diagnosis
This commit is contained in:
parent
955c774602
commit
37e58f5fe7
1 changed files with 2 additions and 5 deletions
|
@ -183,14 +183,11 @@ export default {
|
|||
},
|
||||
|
||||
toggleIgnoreIssue (action, report, item) {
|
||||
const filterArgs = [report.id].concat(Object.entries(item.meta).reduce((filterArgs, entries) => {
|
||||
filterArgs.push(entries.join('='))
|
||||
return filterArgs
|
||||
}))
|
||||
const filterArgs = [report.id].concat(Object.entries(item.meta).map(entries => entries.join('=')))
|
||||
|
||||
api.put(
|
||||
'diagnosis/' + action,
|
||||
{ 'filter[]': filterArgs },
|
||||
{ filter: filterArgs },
|
||||
`diagnosis.${action}.${item.status.toLowerCase()}`
|
||||
).then(() => {
|
||||
item.ignored = action === 'ignore'
|
||||
|
|
Loading…
Reference in a new issue