File tree Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -744,31 +744,31 @@ const Chat = () => {
744
744
}
745
745
746
746
return (
747
- < Dialog
748
- hidden = { ! isDialogOpen }
749
- onDismiss = { ( ) => setIsDialogOpen ( false ) }
750
- dialogContentProps = { {
751
- type : DialogType . largeHeader ,
752
- title : 'Query String Parameters' ,
753
- subText : 'The current query string parameters are:' ,
754
- } }
755
- modalProps = { {
756
- isBlocking : false ,
757
- styles : { main : { maxWidth : 450 } } ,
758
- } }
759
- >
760
- < div >
761
- { Array . from ( queryParams . entries ( ) ) . map ( ( [ key , value ] ) => (
762
- < p key = { key } >
763
- < strong > { key } :</ strong > { value }
764
- </ p >
765
- ) ) }
766
- </ div >
767
- < DialogFooter >
768
- < DefaultButton onClick = { ( ) => setIsDialogOpen ( false ) } text = "Close" />
769
- </ DialogFooter >
770
- </ Dialog >
771
747
< div className = { styles . container } role = "main" >
748
+ < Dialog
749
+ hidden = { ! isDialogOpen }
750
+ onDismiss = { ( ) => setIsDialogOpen ( false ) }
751
+ dialogContentProps = { {
752
+ type : DialogType . largeHeader ,
753
+ title : 'Query String Parameters' ,
754
+ subText : 'The current query string parameters are:' ,
755
+ } }
756
+ modalProps = { {
757
+ isBlocking : false ,
758
+ styles : { main : { maxWidth : 450 } } ,
759
+ } }
760
+ >
761
+ < div >
762
+ { Array . from ( queryParams . entries ( ) ) . map ( ( [ key , value ] ) => (
763
+ < p key = { key } >
764
+ < strong > { key } :</ strong > { value }
765
+ </ p >
766
+ ) ) }
767
+ </ div >
768
+ < DialogFooter >
769
+ < DefaultButton onClick = { ( ) => setIsDialogOpen ( false ) } text = "Close" />
770
+ </ DialogFooter >
771
+ </ Dialog >
772
772
< DefaultButton
773
773
text = "Show Query Params"
774
774
onClick = { ( ) => setIsDialogOpen ( true ) }
You can’t perform that action at this time.
0 commit comments