@@ -228,7 +228,6 @@ const Content: React.FC<ContentProps> = ({
228228 }
229229 } ;
230230
231-
232231 const handleGenerateGraph = ( allowLargeFiles : boolean , selectedFilesFromAllfiles : CustomFile [ ] ) => {
233232 setIsLargeFile ( false ) ;
234233 const data = [ ] ;
@@ -268,8 +267,9 @@ const Content: React.FC<ContentProps> = ({
268267 const handleOpenGraphClick = ( ) => {
269268 const bloomUrl = process . env . BLOOM_URL ;
270269 const uriCoded = userCredentials ?. uri . replace ( / : \d + $ / , '' ) ;
271- const connectURL = `${ uriCoded ?. split ( '//' ) [ 0 ] } //${ userCredentials ?. userName } @${ uriCoded ?. split ( '//' ) [ 1 ] } :${ userCredentials ?. port ?? '7687'
272- } `;
270+ const connectURL = `${ uriCoded ?. split ( '//' ) [ 0 ] } //${ userCredentials ?. userName } @${ uriCoded ?. split ( '//' ) [ 1 ] } :${
271+ userCredentials ?. port ?? '7687'
272+ } `;
273273 const encodedURL = encodeURIComponent ( connectURL ) ;
274274 const replacedUrl = bloomUrl ?. replace ( '{CONNECT_URL}' , encodedURL ) ;
275275 window . open ( replacedUrl , '_blank' ) ;
@@ -279,10 +279,10 @@ const Content: React.FC<ContentProps> = ({
279279 isLeftExpanded && isRightExpanded
280280 ? 'contentWithExpansion'
281281 : isRightExpanded
282- ? 'contentWithChatBot'
283- : ! isLeftExpanded && ! isRightExpanded
284- ? 'w-[calc(100%-128px)]'
285- : 'contentWithDropzoneExpansion' ;
282+ ? 'contentWithChatBot'
283+ : ! isLeftExpanded && ! isRightExpanded
284+ ? 'w-[calc(100%-128px)]'
285+ : 'contentWithDropzoneExpansion' ;
286286
287287 const handleGraphView = ( ) => {
288288 setOpenGraphView ( true ) ;
@@ -585,8 +585,9 @@ const Content: React.FC<ContentProps> = ({
585585 } }
586586 > </ FileTable >
587587 < Flex
588- className = { `${ ! isLeftExpanded && ! isRightExpanded ? 'w-[calc(100%-128px)]' : 'w-full'
589- } p-2.5 absolute bottom-4 mt-1.5 self-start`}
588+ className = { `${
589+ ! isLeftExpanded && ! isRightExpanded ? 'w-[calc(100%-128px)]' : 'w-full'
590+ } p-2.5 absolute bottom-4 mt-1.5 self-start`}
590591 justifyContent = 'space-between'
591592 flexDirection = 'row'
592593 >
0 commit comments