Compare commits

..

1 commit

Author SHA1 Message Date
e51f28e214 add basic view for item history
All checks were successful
/ test (pull_request) Successful in 49s
/ test (push) Successful in 51s
2024-12-01 17:08:08 +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/items/${id}/comment/`, {comment: message});
const {data, success} = await getters.session.post(`/2/${getters.getEventSlug}/item/${id}/comment/`, {comment: message});
if (data && success) {
state.fetchedData.items = 0;
await dispatch('loadEventItems');