Skip to content

Commit 0659920

Browse files
committed
Update TrsToolData to TrsSearchData
1 parent 89eceda commit 0659920

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

client/src/components/Workflow/Import/TrsSearch.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ const fields: TableField[] = [
4141
];
4242
4343
const query = ref("");
44-
const results: Ref<TrsToolData[]> = ref([]);
44+
const results: Ref<TrsSearchData[]> = ref([]);
4545
const trsServer = ref("");
4646
const loading = ref(false);
4747
const importing = ref(false);
4848
const trsSelection: Ref<TrsSelection | null> = ref(null);
4949
const errorMessage: Ref<string | null> = ref(null);
50-
const selectedTool = ref<TrsToolData | null>(null);
50+
const selectedTool = ref<TrsSearchData | null>(null);
5151
const selectedVersion = ref<string | undefined>(undefined);
5252
5353
const hasErrorMessage = computed(() => {
@@ -120,7 +120,7 @@ function computeItems(items: TrsSearchData[]) {
120120
121121
const router = useRouter();
122122
123-
function onVersionSelected(toolData: TrsToolData, versionId: string) {
123+
function onVersionSelected(toolData: TrsSearchData, versionId: string) {
124124
selectedTool.value = toolData;
125125
selectedVersion.value = versionId;
126126
}

0 commit comments

Comments
 (0)