File tree Expand file tree Collapse file tree
client/src/components/Tool Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 <div v-if =" showEntryPoints" >
1111 <ToolEntryPoints v-for =" job in entryPoints" :key =" job.id" :job-id =" job.id" />
1212 </div >
13- <b-modal v-model =" showError" size =" sm " :title =" errorTitle | l" scrollable ok-only >
13+ <GModal :show.sync =" showError" size =" medium " :title =" errorTitle | l" fixed-height >
1414 <b-alert v-if =" errorMessage" show variant =" danger" >
1515 {{ errorMessage }}
1616 </b-alert >
2121 <small class =" text-muted" >
2222 <pre >{{ errorContentPretty }}</pre >
2323 </small >
24- </b-modal >
24+ </GModal >
2525 <ToolRecommendation v-if =" showRecommendation" :tool-id =" formConfig.id" />
2626 <ToolCard
2727 v-if =" showForm"
@@ -124,6 +124,7 @@ import { useUserToolsServiceCredentialsStore } from "@/stores/userToolsServiceCr
124124
125125import { getToolFormData , submitJob , updateToolFormData } from " ./services" ;
126126
127+ import GModal from " ../BaseComponents/GModal.vue" ;
127128import ToolRecommendation from " ../ToolRecommendation.vue" ;
128129import ToolCard from " ./ToolCard.vue" ;
129130import ToolFormTags from " ./ToolFormTags.vue" ;
@@ -147,6 +148,7 @@ export default {
147148 ToolFormTags,
148149 ToolRecommendation,
149150 Heading,
151+ GModal,
150152 },
151153 props: {
152154 id: {
You can’t perform that action at this time.
0 commit comments