mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-10 07:05:57 +08:00
Update bmt filters default state [SCI-6090]
This commit is contained in:
parent
06788bfeb6
commit
c00a7b7b8f
5 changed files with 26 additions and 19 deletions
|
@ -45,7 +45,7 @@
|
|||
margin-bottom: .5em;
|
||||
margin-top: 1.5em;
|
||||
|
||||
input[type=radio] {
|
||||
.sci-radio-container {
|
||||
margin: 0 .25em 0 .5em;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
data() {
|
||||
return {
|
||||
sequence: "",
|
||||
derivativesIncluded: false
|
||||
derivativesIncluded: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
data() {
|
||||
return {
|
||||
sequence: "",
|
||||
derivativesIncluded: false
|
||||
derivativesIncluded: true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,21 +15,28 @@
|
|||
<input class="sci-input-field" @input="updateFilterData" type="text" v-model="distance" />
|
||||
</div>
|
||||
<label class="distance-attribute">
|
||||
<input
|
||||
@change="updateFilterData"
|
||||
type="radio"
|
||||
v-model="distanceType"
|
||||
value="EXACT"
|
||||
/>
|
||||
<span class="sci-radio-container">
|
||||
<input
|
||||
@change="updateFilterData"
|
||||
type="radio"
|
||||
class="sci-radio"
|
||||
v-model="distanceType"
|
||||
value="EXACT"
|
||||
/>
|
||||
<label class="sci-radio-label"></label>
|
||||
</span>
|
||||
<span>{{ i18n.t('repositories.show.bmt_search.filters.types.variantSequenceFilter.exact') }}</span>
|
||||
</label>
|
||||
<label class="distance-attribute">
|
||||
<input
|
||||
@change="updateFilterData"
|
||||
type="radio"
|
||||
v-model="distanceType"
|
||||
value="MAX"
|
||||
/>
|
||||
<span class="sci-radio-container">
|
||||
<input
|
||||
@change="updateFilterData"
|
||||
type="radio"
|
||||
v-model="distanceType"
|
||||
value="MAX"
|
||||
/>
|
||||
<label class="sci-radio-label"></label>
|
||||
</span>
|
||||
<span>{{ i18n.t('repositories.show.bmt_search.filters.types.variantSequenceFilter.maximum') }}</span>
|
||||
</label>
|
||||
</label>
|
||||
|
@ -45,7 +52,7 @@
|
|||
data() {
|
||||
return {
|
||||
sequence: "",
|
||||
distance: null,
|
||||
distance: 3,
|
||||
distanceType: "EXACT"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1386,8 +1386,8 @@ en:
|
|||
name: "Entity type"
|
||||
placeholder: "Enter entity type"
|
||||
monomerTypeFilter:
|
||||
name: "Monomer type"
|
||||
placeholder: "Enter monomer type"
|
||||
name: "Monomere type"
|
||||
placeholder: "Enter monomere type"
|
||||
subsequenceFilter:
|
||||
name: "Subsequence"
|
||||
placeholder: "Enter subsequence"
|
||||
|
@ -1405,7 +1405,7 @@ en:
|
|||
placeholder: "Enter full sequence"
|
||||
derivatives_included: "Derivatives included"
|
||||
monomerSubstructureSearchFilter:
|
||||
name: "Monomer substructure"
|
||||
name: "Monomere substructure"
|
||||
placeholder: "Enter substructure"
|
||||
table:
|
||||
id: 'ID'
|
||||
|
|
Loading…
Add table
Reference in a new issue