cleared TODOs

This commit is contained in:
vabene1111 2024-01-29 08:41:02 +01:00
parent 0f1a3ba5d8
commit ee7cdacc40

View File

@ -242,12 +242,8 @@ export const useShoppingListStore = defineStore(_STORE_ID, {
*/
createObject(object) {
let apiClient = new ApiApiFactory()
// TODO shared handled in backend?
return apiClient.createShoppingListEntry(object).then((r) => {
Vue.set(this.entries, r.data.id, r.data)
this.registerChange('CREATED', {[r.data.id]: r.data},)
}).catch((err) => {
StandardToasts.makeStandardToast(this, StandardToasts.FAIL_UPDATE, err)
@ -317,7 +313,7 @@ export const useShoppingListStore = defineStore(_STORE_ID, {
*/
updateEntryInStructure(structure, entry, group) {
let grouping_key = _.get(entry, group, this.UNDEFINED_CATEGORY)
// todo handele parent
if (grouping_key === undefined || grouping_key === null) {
grouping_key = this.UNDEFINED_CATEGORY
}