From 0f8c379c486a93d8e9447b2cc8a3b42a38a65e67 Mon Sep 17 00:00:00 2001 From: Ahmed Awan Date: Mon, 15 Apr 2024 19:03:40 -0500 Subject: [PATCH 1/3] Use the new column-select component in `FormData` for multiple select This allows for easier multiselect with added ease for range select. Fixes https://github.com/galaxyproject/galaxy/issues/17947 --- .../components/Form/Elements/FormData/FormData.vue | 9 ++++++++- .../Form/Elements/FormSelectMany/FormSelectMany.vue | 12 ++++++++++-- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/client/src/components/Form/Elements/FormData/FormData.vue b/client/src/components/Form/Elements/FormData/FormData.vue index 87ecd98f4928..2322b9b17ab8 100644 --- a/client/src/components/Form/Elements/FormData/FormData.vue +++ b/client/src/components/Form/Elements/FormData/FormData.vue @@ -14,6 +14,7 @@ import { orList } from "@/utils/strings"; import type { DataOption } from "./types"; import { BATCH, SOURCE, VARIANTS } from "./variants"; +import FormSelection from "../FormSelection.vue"; import FormSelect from "@/components/Form/Elements/FormSelect.vue"; library.add(faCopy, faFile, faFolder, faCaretDown, faCaretUp, faExclamation, faLink, faUnlink); @@ -502,7 +503,7 @@ const noOptionsWarningMessage = computed(() => { { +