diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 58aa81dd63c3..e90a4ea836b2 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -62,7 +62,7 @@ jobs: id: minikube uses: CodingNagger/minikube-setup-action@v1.0.6 with: - k8s-version: '1.19.16' + k8s-version: '1.23.0' - name: Launch Minikube run: eval ${{ steps.minikube.outputs.launcher }} - name: Check pods diff --git a/.github/workflows/osx_startup.yaml b/.github/workflows/osx_startup.yaml index ccc17526f870..5c0ffbe2b534 100644 --- a/.github/workflows/osx_startup.yaml +++ b/.github/workflows/osx_startup.yaml @@ -50,7 +50,7 @@ jobs: path: .tox key: tox-cache-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('galaxy root/requirements.txt') }}-osx - name: Install miniconda # use this job to test using Python from a conda environment - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: activate-environment: '' - name: Restore client cache diff --git a/client/src/api/schema/schema.ts b/client/src/api/schema/schema.ts index 22f30a75bdae..7ffa3c7d77e2 100644 --- a/client/src/api/schema/schema.ts +++ b/client/src/api/schema/schema.ts @@ -3738,7 +3738,7 @@ export interface components { * Element Type * @description The type of the element. Used to interpret the `object` field. */ - element_type: components["schemas"]["DCEType"]; + element_type?: components["schemas"]["DCEType"] | null; /** * Dataset Collection Element ID * @example 0123456789ABCDEF @@ -3755,10 +3755,11 @@ export interface components { * Object * @description The element's specific data depending on the value of `element_type`. */ - object: + object?: | components["schemas"]["HDAObject"] | components["schemas"]["HDADetailed"] - | components["schemas"]["DCObject"]; + | components["schemas"]["DCObject"] + | null; }; /** * DCEType diff --git a/client/src/components/Dataset/DatasetStorage/DatasetStorage.vue b/client/src/components/Dataset/DatasetStorage/DatasetStorage.vue index ec020cf1e174..b36bdfad2296 100644 --- a/client/src/components/Dataset/DatasetStorage/DatasetStorage.vue +++ b/client/src/components/Dataset/DatasetStorage/DatasetStorage.vue @@ -59,14 +59,7 @@ watch(props, fetch, { immediate: true }); diff --git a/client/src/components/Dataset/DatasetStorage/RelocateDialog.vue b/client/src/components/Dataset/DatasetStorage/RelocateDialog.vue index e0823d4b9bd5..1caf060b53b1 100644 --- a/client/src/components/Dataset/DatasetStorage/RelocateDialog.vue +++ b/client/src/components/Dataset/DatasetStorage/RelocateDialog.vue @@ -13,24 +13,26 @@ defineProps(); const emit = defineEmits<{ (e: "relocate", value: string): void; + (e: "closeModal"): void; }>(); -const fromWhat = "This dataset location in a"; +const fromWhat = "This dataset location is"; const toWhat = "This dataset will be relocated to";