Skip to content

Commit

Permalink
Merge pull request #1555 from /issues/1548
Browse files Browse the repository at this point in the history
bug 1548 fixed
  • Loading branch information
varsha766 authored Aug 12, 2022
2 parents f1cb26c + 57547ff commit 14f0064
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/views/superAdmin/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -479,9 +479,9 @@ export default {
if (x.id === 5) {
return (x.value = {
name: "",
discount: "",
discount: 0,
expiredAt: null,
maxClaimCount: "",
maxClaimCount: 0,
});
}
return (x.value = "");
Expand Down Expand Up @@ -614,6 +614,7 @@ export default {
this.schedules.unshift(schedule);
}
} else if (json.discount) {
this.notifySuccess("Coupon"+" "+ json.name + " "+ "successfully created");
this.couponTable.unshift(json);
this.isEdit = false;
}
Expand Down

0 comments on commit 14f0064

Please sign in to comment.