Skip to content

Commit

Permalink
fix: tags view in rd search form
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Jan 10, 2024
1 parent 8fd3720 commit a514a77
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/rd/src/runtime/components/core/SearchForm.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import type { CodeRecord, CodeSystemConcept, ValueSetCoding } from '@dnpm-dip/core';
import {
DCollectionTransform, DFormSelectSearch, DFormTabGroups, DValueSet, QueryRequestMode,
DCollectionTransform, DFormSelectSearch, DFormTabGroups, DTags, DValueSet, QueryRequestMode,
} from '@dnpm-dip/core';
import type { FormSelectOption } from '@vuecs/form-controls';
import type { PropType } from 'vue';
Expand All @@ -19,6 +19,7 @@ import VariantFormTabGroup from './VariantFormTabGroup.vue';
export default defineComponent({
components: {
DTags,
VariantFormTabGroup,
DFormTabGroups,
DCollectionTransform,
Expand Down Expand Up @@ -370,7 +371,7 @@ export default defineComponent({
placeholder="Orphanet Ontology"
>
<template #selected="{ items, toggle }">
<Tags
<DTags
:items="items"
tag-variant="dark"
@deleted="toggle"
Expand Down Expand Up @@ -412,7 +413,7 @@ export default defineComponent({
placeholder="Human Phenotype Ontology"
>
<template #selected="{ items, toggle }">
<Tags
<DTags
:items="items"
tag-variant="dark"
@deleted="toggle"
Expand Down

0 comments on commit a514a77

Please sign in to comment.