Skip to content

Commit

Permalink
Fixing attribute name.
Browse files Browse the repository at this point in the history
"scope" should be "slot"
  • Loading branch information
nWidart committed Nov 20, 2017
1 parent dec2eb3 commit 89508b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/User/Assets/js/components/UserProfile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="box-body">
<el-tabs>
<el-tab-pane :label="trans('users.tabs.data')">
<span scope="label"
<span slot="label"
:class="{'error' : form.errors.any()}">
{{ trans('users.tabs.data') }}
</span>
Expand Down
3 changes: 2 additions & 1 deletion public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -116873,7 +116873,8 @@ var render = function() {
"span",
{
class: { error: _vm.form.errors.any() },
attrs: { scope: "label" }
attrs: { slot: "label" },
slot: "label"
},
[
_vm._v(
Expand Down

0 comments on commit 89508b4

Please sign in to comment.