File tree Expand file tree Collapse file tree
client/src/components/Workflow/Import Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,13 +41,13 @@ const fields: TableField[] = [
4141];
4242
4343const query = ref (" " );
44- const results: Ref <TrsToolData []> = ref ([]);
44+ const results: Ref <TrsSearchData []> = ref ([]);
4545const trsServer = ref (" " );
4646const loading = ref (false );
4747const importing = ref (false );
4848const trsSelection: Ref <TrsSelection | null > = ref (null );
4949const errorMessage: Ref <string | null > = ref (null );
50- const selectedTool = ref <TrsToolData | null >(null );
50+ const selectedTool = ref <TrsSearchData | null >(null );
5151const selectedVersion = ref <string | undefined >(undefined );
5252
5353const hasErrorMessage = computed (() => {
@@ -120,7 +120,7 @@ function computeItems(items: TrsSearchData[]) {
120120
121121const 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}
You can’t perform that action at this time.
0 commit comments