Fixes tooltip not appearing correctly on some status tabs. Ref. #248.

This commit is contained in:
Mateus Machado Luna 2019-05-27 10:06:25 -03:00
parent 1997e18dca
commit b66173b086
2 changed files with 6 additions and 1 deletions

View File

@ -149,6 +149,7 @@
</b-field>
<component
:errors="formErrors['filter_type_options']"
v-if="(editForm.filter_type_object && editForm.filter_type_object.form_component && editForm.filter_type_object.options) || editForm.edit_form == ''"
:is="editForm.filter_type_object.form_component"
:filter="editForm"

View File

@ -609,7 +609,7 @@
<div
v-if="!isOnTheme && !openAdvancedSearch"
class="tabs">
<ul>
<ul>
<li
@click="onChangeTab('')"
:class="{ 'is-active': status == undefined || status == ''}"
@ -1893,6 +1893,10 @@
padding-left: $page-side-padding;
padding-right: $page-side-padding;
@media screen and (min-width: 1024px) {
overflow: visible;
}
li {
cursor: pointer;
}