Merged in bugfix/PMCORE-2633 (pull request #7704)

PMCORE-2633

Approved-by: Rodrigo Quelca <rockoinfo@yahoo.com>
This commit is contained in:
Fabio Guachalla
2021-01-07 13:43:05 +00:00
committed by Julio Cesar Laura Avendaño

View File

@@ -10,6 +10,7 @@
:title="addSearchTitle" :title="addSearchTitle"
> >
<template v-slot:target-item> <template v-slot:target-item>
<div class="p-2">
<b-button <b-button
id="popover-target-1" id="popover-target-1"
variant="success" variant="success"
@@ -19,6 +20,7 @@
> >
<b-icon icon="plus"></b-icon>{{$t('ID_ADD_FILTER')}} <b-icon icon="plus"></b-icon>{{$t('ID_ADD_FILTER')}}
</b-button> </b-button>
</div>
</template> </template>
<template v-slot:body> <template v-slot:body>
<b-form-group> <b-form-group>
@@ -33,12 +35,14 @@
</b-form-group> </b-form-group>
</template> </template>
</SearchPopover> </SearchPopover>
<div class="p-2">
<b-button <b-button
size="sm" size="sm"
@click="cleanAllTags" @click="cleanAllTags"
variant="danger" variant="danger"
>{{$t('ID_CLEAN_ALL')}}</b-button >{{$t('ID_CLEAN_ALL')}}
> </b-button>
</div>
</div> </div>
</b-col> </b-col>
@@ -96,6 +100,8 @@
<b-row> <b-row>
<b-col> <b-col>
<div class="d-flex flex-row"> <div class="d-flex flex-row">
<div class="tag row">
<div class="col-11">
<b-form-tags <b-form-tags
input-id="tags-pills" input-id="tags-pills"
v-model="searchTags" v-model="searchTags"
@@ -116,7 +122,7 @@
class="mr-1 badge badge-light" class="mr-1 badge badge-light"
> >
<div :id="tag"> <div :id="tag" class="p-2">
<i class="fas fa-tags"></i> <i class="fas fa-tags"></i>
{{ tagContent(tag) }} {{ tagContent(tag) }}
</div> </div>
@@ -131,6 +137,8 @@
</div> </div>
</template> </template>
</b-form-tags> </b-form-tags>
</div>
<div class="col-1">
<b-input-group-append> <b-input-group-append>
<b-button <b-button
pill pill
@@ -142,6 +150,8 @@
</b-button> </b-button>
</b-input-group-append> </b-input-group-append>
</div> </div>
</div>
</div>
</b-col> </b-col>
</b-row> </b-row>
@@ -624,4 +634,8 @@ export default {
.bv-example-row-flex-cols .row { .bv-example-row-flex-cols .row {
min-height: 10rem; min-height: 10rem;
} }
.tag {
width: 100%;
}
</style> </style>