@@ -427,18 +427,18 @@ export const Bot = (botProps: BotProps & { class?: string }) => {
427
427
setUploadedFiles ( [ ] ) ;
428
428
scrollToBottom ( ) ;
429
429
} ;
430
-
430
+
431
431
const handleDisclaimerAccept = ( ) => {
432
432
setDisclaimerPopupOpen ( false ) ; // Close the disclaimer popup
433
- setCookie ( " chatbotDisclaimer" , " true" , 365 ) ; // Disclaimer accepted
433
+ setCookie ( ' chatbotDisclaimer' , ' true' , 365 ) ; // Disclaimer accepted
434
434
} ;
435
-
435
+
436
436
const promptClick = ( prompt : string ) => {
437
437
handleSubmit ( prompt ) ;
438
438
} ;
439
439
440
440
// Handle form submission
441
- const handleSubmit = async ( value : string , action ?: IAction | undefined | null ) => {
441
+ const handleSubmit = async ( value : string , action ?: IAction | undefined | null ) => {
442
442
if ( value . trim ( ) === '' ) {
443
443
const containsFile = previews ( ) . filter ( ( item ) => ! item . mime . startsWith ( 'image' ) && item . type !== 'audio' ) . length > 0 ;
444
444
if ( ! previews ( ) . length || ( previews ( ) . length && containsFile ) ) {
@@ -653,15 +653,14 @@ export const Bot = (botProps: BotProps & { class?: string }) => {
653
653
654
654
// eslint-disable-next-line solid/reactivity
655
655
createEffect ( async ( ) => {
656
-
657
656
if ( props . disclaimer ) {
658
- if ( getCookie ( " chatbotDisclaimer" ) == " true" ) {
659
- setDisclaimerPopupOpen ( false )
657
+ if ( getCookie ( ' chatbotDisclaimer' ) == ' true' ) {
658
+ setDisclaimerPopupOpen ( false ) ;
660
659
} else {
661
- setDisclaimerPopupOpen ( true )
660
+ setDisclaimerPopupOpen ( true ) ;
662
661
}
663
662
} else {
664
- setDisclaimerPopupOpen ( false )
663
+ setDisclaimerPopupOpen ( false ) ;
665
664
}
666
665
667
666
const chatMessage = getLocalStorageChatflow ( props . chatflowid ) ;
@@ -1350,12 +1349,11 @@ export const Bot = (botProps: BotProps & { class?: string }) => {
1350
1349
< DisclaimerPopup
1351
1350
isOpen = { disclaimerPopupOpen ( ) }
1352
1351
onAccept = { handleDisclaimerAccept }
1353
- title = { props . disclaimer ?. title }
1352
+ title = { props . disclaimer ?. title }
1354
1353
message = { props . disclaimer ?. message }
1355
1354
buttonText = { props . disclaimer ?. buttonText }
1356
1355
/>
1357
1356
) }
1358
-
1359
1357
</ >
1360
1358
) ;
1361
1359
} ;
0 commit comments