Skip to content

Commit d0abee4

Browse files
committed
Fixup imports.
1 parent 84f1529 commit d0abee4

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

client/src/components/Tool/ToolForm.vue

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,9 @@
110110
</template>
111111

112112
<script>
113-
import { mapActions, mapState, storeToRefs } from "pinia";
114113
import axios from "axios";
114+
import { getAppRoot } from "onload/loadConfig";
115+
import { mapActions, mapState, storeToRefs } from "pinia";
115116
116117
import { canMutateHistory, getToolInputs } from "@/api";
117118
import { useUserToolCredentials } from "@/composables/userToolCredentials";
@@ -123,7 +124,9 @@ import { useTourStore } from "@/stores/tourStore";
123124
import { useUserStore } from "@/stores/userStore";
124125
import { useUserToolsServiceCredentialsStore } from "@/stores/userToolsServiceCredentialsStore";
125126
import { startWatchingHistory } from "@/watch/watchHistoryProvided";
126-
import { getAppRoot } from "onload/loadConfig";
127+
128+
import { getToolFormData, submitJob, submitToolRequest, updateToolFormData } from "./services";
129+
import { structuredInputs } from "./structured";
127130
128131
import ToolRecommendation from "../ToolRecommendation.vue";
129132
import ToolCard from "./ToolCard.vue";
@@ -135,8 +138,6 @@ import FormDisplay from "@/components/Form/FormDisplay.vue";
135138
import FormElement from "@/components/Form/FormElement.vue";
136139
import LoadingSpan from "@/components/LoadingSpan.vue";
137140
import ToolEntryPoints from "@/components/ToolEntryPoints/ToolEntryPoints.vue";
138-
import { getToolFormData, submitJob, submitToolRequest, updateToolFormData } from "./services";
139-
import { structuredInputs } from "./structured";
140141
141142
export default {
142143
components: {

client/src/components/Tool/structured.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import SPEC_PARAMETERS from "./parameter_models.yml";
22
import SPEC_TESTS from "./parameter_specification.yml";
3-
import type { IntegerParameterModel, TextParameterModel } from "./parameterModels";
4-
import { structuredInputs, validate, type ToolParameterModel } from "./structured";
3+
import type { IntegerParameterModel } from "./parameterModels";
4+
import { structuredInputs, type ToolParameterModel,validate } from "./structured";
55

66
describe("structured.js", () => {
77
it("should parse galaxy integer parameters", () => {

0 commit comments

Comments
 (0)