Compare commits

..

1 commit

Author SHA1 Message Date
e79545aec8 add basic view for item history
All checks were successful
/ test (push) Successful in 50s
/ test (pull_request) Successful in 48s
2024-12-01 17:05:13 +01:00

View file

@ -456,7 +456,7 @@ const store = createStore({
}
},
async postItemComment({commit, dispatch, state, getters}, {id, message}) {
const {data, success} = await getters.session.post(`/2/${getters.getEventSlug}/item/${id}/comment/`, {comment: message});
const {data, success} = await getters.session.post(`/2/items/${id}/comment/`, {comment: message});
if (data && success) {
state.fetchedData.items = 0;
await dispatch('loadEventItems');