UPD: Remove profile list icon

This commit is contained in:
Robert Kossessa
2024-02-01 17:30:07 +01:00
parent 9e6f0ffa29
commit 3412cda566
4 changed files with 31 additions and 24 deletions

View File

@@ -41,6 +41,9 @@ export const useStore = defineStore('main', {
this.selectedProfileId = id
return true
},
addProfile() {
console.log('addProfile is not implemented')
},
duplicateProfile(id) {
const originalProfile = this.profiles.find(p => p.id === id)
const newProfile = JSON.parse(JSON.stringify(originalProfile))