Skip to content

Commit

Permalink
fixed tab header (#1374)
Browse files Browse the repository at this point in the history
  • Loading branch information
theorm authored Nov 20, 2024
1 parent 714dd06 commit e9df1d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
6 changes: 2 additions & 4 deletions src/components/Explorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</div>
<div class="position-absolute right-0 top-0">
<button class="btn btn-icon" v-on:click.prevent="close">
<Icon name="cross" />
<span class="dripicons-cross" />
</button>
</div>
</template>
Expand Down Expand Up @@ -114,7 +114,6 @@ import Pagination from './modules/Pagination.vue'
import Bucket from '@/models/Bucket'
import { NumericRangeFacets, RangeFacets, TimeRangeFacets } from '@/logic/filters'
import { v4 } from 'uuid'
import Icon from '@/components/base/Icon.vue'
const TypeToServiceMap = Object.freeze({
person: entities,
Expand Down Expand Up @@ -365,8 +364,7 @@ export default {
Pagination,
RangeFacetExplorer,
TimeFacetExplorer,
Modal,
Icon
Modal
},
watch: {
searchParameters: {
Expand Down
6 changes: 3 additions & 3 deletions src/components/base/Modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
<div class="modal-content" :class="contentClass">
<div class="modal-header">
<slot
name="modal-header d-flex align-items-center"
name="modal-header"
class="d-flex align-items-center"
v-bind:title-id="`${id}-title`"
v-bind:close="() => close()"
>
Expand All @@ -26,7 +27,7 @@
aria-label="Close"
@click="close"
>
<Icon name="cross" />
<span class="dripicons-cross" />
</button>
</slot>
</div>
Expand Down Expand Up @@ -57,7 +58,6 @@
</template>

<script setup lang="ts">
import Icon from './Icon.vue'
import { ref, computed, watch } from 'vue'
import { v4 } from 'uuid'
Expand Down

0 comments on commit e9df1d3

Please sign in to comment.