Fixing bug where user profile tab was not showing

parent 0db1b089
......@@ -5,6 +5,7 @@ versions:
- Define the warning callback on the SetAppKey
- Cleaner <code>BaseCacheDecorator</code> class with a new <code>remember</code> function
- Checking if the tags() method exists when flushing
- Fixing bug where user profile tab was not showing
"3.3.0":
changed:
- Updating vue-simple-mde to avoid 'marked' warning with vuejs 2.5
......
......@@ -25,7 +25,7 @@
<div class="box-body">
<el-tabs>
<el-tab-pane :label="trans('users.tabs.data')">
<span slot-scope="label"
<span scope="label"
:class="{'error' : form.errors.any()}">
{{ trans('users.tabs.data') }}
</span>
......
......@@ -116867,28 +116867,23 @@ var render = function() {
[
_c(
"el-tab-pane",
{
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 "
)
]
)
}
}
])
},
{ attrs: { label: _vm.trans("users.tabs.data") } },
[
_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(
"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