File tree Expand file tree Collapse file tree 2 files changed +0
-92
lines changed
Expand file tree Collapse file tree 2 files changed +0
-92
lines changed Original file line number Diff line number Diff line change 88
99<script lang =" ts" >
1010 import PrDetailsModalHeader from ' ./PrDetailsModalHeader.svelte' ;
11- import PrDetailsModalInfo from ' ./PrDetailsModalInfo.svelte' ;
1211 import PrTemplateSection from ' ./PrTemplateSection.svelte' ;
1312 import { AIService } from ' $lib/ai/service' ;
1413 import { Project } from ' $lib/backend/projects' ;
8988 const createDraft = persisted <boolean >(false , ' createDraftPr' );
9089
9190 let modal = $state <ReturnType <typeof Modal >>();
92- let templateSelector = $state <ReturnType <typeof PrTemplateSection >>();
9391 let isEditing = $state <boolean >(true );
9492 let isLoading = $state <boolean >(false );
9593 let templateBody = $state <string | undefined >(undefined );
415413 <!-- PR TEMPLATE SELECT -->
416414 {#if $useTemplate }
417415 <PrTemplateSection
418- bind:this ={templateSelector }
419416 onselected ={(body ) => {
420417 templateBody = body ;
421418 }}
472469 </div >
473470 {/if }
474471 </div >
475-
476- <!-- MODAL INFORMATION CONTAINER -->
477- <PrDetailsModalInfo />
478472 </ScrollableContainer >
479473
480474 <!-- FOOTER -->
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments