Skip to content

Commit

Permalink
remove filtros tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
luckspt committed Dec 2, 2021
1 parent b247d27 commit a840e8e
Showing 1 changed file with 12 additions and 26 deletions.
38 changes: 12 additions & 26 deletions src/containers/ChatContainer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,32 +20,19 @@
</template>
</vs-input>
</vs-col>
<vs-col w="4">
<!-- Filtros -->
<vs-tooltip
not-hover
v-model="filtrosTooltip"
right>
<vs-button @click="filtrosTooltip = !filtrosTooltip">
Filtros
</vs-button>
<template #tooltip>
<h4>Filtros</h4>

<!-- Grupos -->
<vs-switch
warn
v-model="filtroGrupos"
class="mt-1">
<template #off>
<i class='fa-solid fa-user-group' ></i>
</template>
<template #on>
<i class='fa-solid fa-user-group' ></i>
</template>
</vs-switch>
<vs-col w="3" class="ml-2">
<!-- Filtro Grupos -->
<vs-switch
warn
v-model="filtroGrupos"
class="mt-1">
<template #off>
<i class='fa-solid fa-user-group' ></i>
</template>
<template #on>
<i class='fa-solid fa-user-group' ></i>
</template>
</vs-tooltip>
</vs-switch>
</vs-col>
</vs-row>
</div>
Expand Down Expand Up @@ -295,7 +282,6 @@ export default Vue.extend({
},
data: () => ({
reRenderTable: true,
filtrosTooltip: true,
filtroGrupos: false,
pesquisaMensagem: '',
recentesSearch: '',
Expand Down

0 comments on commit a840e8e

Please sign in to comment.