fix(ui): Config prompts error

This commit is contained in:
Guillaume Chau
2018-06-14 17:50:23 +02:00
parent b0ed1e2f11
commit bbc974d0db

View File

@@ -29,7 +29,7 @@ export default {
list.push(prompt)
}
for (const tabId in result) {
data.configuration.tabs[tabId].prompts = result[tabId]
data.configuration.tabs.find(t => t.id === tabId).prompts = result[tabId]
}
}
})