Skip to content

Commit

Permalink
FIXED TYPO "CANCEL" Button on Cashier Edit Popup
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdurozzaq committed Jan 10, 2021
1 parent cf83277 commit 5a8d56f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -89413,15 +89413,15 @@ var render = function() {
_c(
"v-btn",
{
attrs: { color: "primary", text: "" },
attrs: { color: "red", text: "" },
on: {
click: function($event) {
$event.preventDefault()
return _vm.closeAndResetVar()
}
}
},
[_vm._v("\n OK\n ")]
[_vm._v("\n CANCEL\n ")]
),
_vm._v(" "),
_c(
Expand Down
4 changes: 2 additions & 2 deletions resources/js/pages/admin/users/CashierUsersList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -182,11 +182,11 @@
<v-card-actions>
<v-spacer></v-spacer>
<v-btn
color="primary"
color="red"
text
@click.prevent="closeAndResetVar()"
>
OK
CANCEL
</v-btn>
<v-btn
color="success"
Expand Down

0 comments on commit 5a8d56f

Please sign in to comment.