put radios beneath search; fix unfaceted search

This commit is contained in:
Mark Eaton
2024-11-04 13:08:05 -05:00
committed by GitHub
parent 8123db4301
commit cbd0581818
+3 -7
View File
@@ -76,8 +76,6 @@ const onesearchComponent = {
</a>
</h1>
<div class="form-group" id="flex-search-form">
<label class="sr-only" for="primoQueryTemp">Search terms</label>
<div class="input-group zero-margin form-width" id="blue-border2">
<input class="form-control form-width inherit-height-from-flex"
@@ -96,7 +94,8 @@ const onesearchComponent = {
@click.stop.prevent="submitSearch"
/>
</div>
<div>
</div>
<div id="radios">
<input type="radio"
id="booksradio"
name="radio1"
@@ -110,7 +109,6 @@ const onesearchComponent = {
>
<label for="articlesradio">Articles</label>
</div>
</div>
</form>`,
methods: {
selectradio(radiooutput) {
@@ -126,9 +124,7 @@ const onesearchComponent = {
},
data() {
return {
selecteditem: {}, // initialize the data from the dropdown selection
searchstring: "", // initialize an empty search string
displayeditem: "Define Your Search", // the text displayed a the top of the OneSearch dropdown
selecteditem: "", // initialize the data from the dropdown selection
};
},
};