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,15 +116867,14 @@ var render = function() { ...@@ -116867,15 +116867,14 @@ 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([ _c(
{
key: "default",
fn: function(label) {
return _c(
"span", "span",
{ class: { error: _vm.form.errors.any() } }, {
class: { error: _vm.form.errors.any() },
attrs: { scope: "label" }
},
[ [
_vm._v( _vm._v(
"\n " + "\n " +
...@@ -116883,12 +116882,8 @@ var render = function() { ...@@ -116883,12 +116882,8 @@ var render = function() {
"\n " "\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