Skip to content

Commit

Permalink
Fix loading when loading admins
Browse files Browse the repository at this point in the history
  • Loading branch information
soasada committed Jan 12, 2021
1 parent e18c971 commit 30685b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 1.0.45 (12-01-2021)
## 1.0.47 (12-01-2021)

### Frontend

Expand Down
1 change: 1 addition & 0 deletions kemenu-admin-frontend/src/admin/AdminManagement.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export default defineComponent({
const onDelete = (admin: AdminResponse) => {
HttpClient.delete('/v1/admins', admin.id, store.getters.getAccessToken)
.then(() => {
loading.value = true;
AdminService.findAll(store.getters.getAccessToken)
.then(response => {
admins.value = response;
Expand Down

0 comments on commit 30685b7

Please sign in to comment.