Skip to content

Commit

Permalink
WIP toggle fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
eboileau committed May 14, 2024
1 parent 7e86549 commit f23d2f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client/src/components/compare/CompareStepB.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const props = defineProps({
required: true
}
})
const isEUF = ref()
const dataset = ref()
const disabled = ref(false)
const uploadURL = HTTP.getUri() + '/upload'
Expand Down Expand Up @@ -53,6 +53,7 @@ const clear = () => {
>Dataset file
</InputText>
<div class="flex flex-row">
<ToggleButton v-model="isEUF" onLabel="bedRMod" offLabel="BED6" class="w-[8rem] mr-4" />
<FileUpload
mode="basic"
name="file"
Expand All @@ -69,7 +70,7 @@ const clear = () => {
@click="clear"
icon="pi pi-times"
severity="danger"
class="ml-4 max-h-[1.9rem] place-self-center"
class="ml-4 max-h-[1.9rem] place-self-center text-nowrap"
/>
</div>
<MultiSelect
Expand Down
2 changes: 2 additions & 0 deletions client/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ import StepperPanel from 'primevue/stepperpanel'
import TabPanel from 'primevue/tabpanel'
import TabView from 'primevue/tabview'
import Textarea from 'primevue/textarea'
import ToggleButton from 'primevue/togglebutton'
import TreeSelect from 'primevue/treeselect'
// layout components
import DefaultLayout from '@/components/layout/DefaultLayout.vue'
Expand Down Expand Up @@ -86,6 +87,7 @@ app.component('StepperPanel', StepperPanel)
app.component('TabPanel', TabPanel)
app.component('TabView', TabView)
app.component('Textarea', Textarea)
app.component('ToggleButton', ToggleButton)
app.component('TreeSelect', TreeSelect)

app.component('DefaultLayout', DefaultLayout)
Expand Down

0 comments on commit f23d2f8

Please sign in to comment.