diff --git a/store/postwoman.js b/store/postwoman.js index bf5881268..895464977 100644 --- a/store/postwoman.js +++ b/store/postwoman.js @@ -111,6 +111,10 @@ export const mutations = { }, addNewCollection({ collections }, collection) { + const duplicateCollection = collections.some(item => item.name === collection.name) + if (duplicateCollection) { + alert('Duplicate collection'); + } collections.push({ name: "", folders: [],