mirror of
https://github.com/mokuappio/serverless-invoices.git
synced 2025-10-29 00:41:08 -04:00
Fix persisting client changes. Fix persisting team changes. Fix validating vat of 0.
This commit is contained in:
@ -27,11 +27,8 @@ export default {
|
||||
await Team.create({ data: team });
|
||||
return team;
|
||||
},
|
||||
async teamProps({ state }, props) {
|
||||
return Team.update({
|
||||
where: state.teamId,
|
||||
data: props,
|
||||
});
|
||||
async teamProps({ getters }, props) {
|
||||
return getters.team.$update(props);
|
||||
},
|
||||
async updateTeam({ getters, dispatch }, props) {
|
||||
if (props) {
|
||||
|
||||
Reference in New Issue
Block a user