Fixing bug where user profile tab was not showing

parent 0db1b089
...@@ -5,6 +5,7 @@ versions: ...@@ -5,6 +5,7 @@ versions:
- Define the warning callback on the SetAppKey - Define the warning callback on the SetAppKey
- Cleaner <code>BaseCacheDecorator</code> class with a new <code>remember</code> function - Cleaner <code>BaseCacheDecorator</code> class with a new <code>remember</code> function
- Checking if the tags() method exists when flushing - Checking if the tags() method exists when flushing
- Fixing bug where user profile tab was not showing
"3.3.0": "3.3.0":
changed: changed:
- Updating vue-simple-mde to avoid 'marked' warning with vuejs 2.5 - Updating vue-simple-mde to avoid 'marked' warning with vuejs 2.5
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
<div class="box-body"> <div class="box-body">
<el-tabs> <el-tabs>
<el-tab-pane :label="trans('users.tabs.data')"> <el-tab-pane :label="trans('users.tabs.data')">
<span slot-scope="label" <span scope="label"
:class="{'error' : form.errors.any()}"> :class="{'error' : form.errors.any()}">
{{ trans('users.tabs.data') }} {{ trans('users.tabs.data') }}
</span> </span>
......
...@@ -116867,28 +116867,23 @@ var render = function() { ...@@ -116867,28 +116867,23 @@ var render = function() {
[ [
_c( _c(
"el-tab-pane", "el-tab-pane",
{ { attrs: { label: _vm.trans("users.tabs.data") } },
attrs: { label: _vm.trans("users.tabs.data") },
scopedSlots: _vm._u([
{
key: "default",
fn: function(label) {
return _c(
"span",
{ class: { error: _vm.form.errors.any() } },
[
_vm._v(
"\n " +
_vm._s(_vm.trans("users.tabs.data")) +
"\n "
)
]
)
}
}
])
},
[ [
_c(
"span",
{
class: { error: _vm.form.errors.any() },
attrs: { scope: "label" }
},
[
_vm._v(
"\n " +
_vm._s(_vm.trans("users.tabs.data")) +
"\n "
)
]
),
_vm._v(" "),
_c( _c(
"el-form-item", "el-form-item",
{ {
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment