Skip to content

Commit

Permalink
Fixing edit user route btn
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Oct 12, 2017
1 parent 101b838 commit 2afd101
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/User/Assets/js/components/UserTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<template scope="scope">
<el-button-group>
<edit-button
:to="{name: 'admin.user.users.edit', params: {roleId: scope.row.id}}"></edit-button>
:to="{name: 'admin.user.users.edit', params: {userId: scope.row.id}}"></edit-button>
<delete-button :scope="scope" :rows="data"></delete-button>
</el-button-group>
</template>
Expand Down
2 changes: 1 addition & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -107994,7 +107994,7 @@ var render = function() {
attrs: {
to: {
name: "admin.user.users.edit",
params: { roleId: scope.row.id }
params: { userId: scope.row.id }
}
}
}),
Expand Down

0 comments on commit 2afd101

Please sign in to comment.