Update app.py
Browse files
    	
        app.py
    CHANGED
    
    | 
         @@ -329,6 +329,6 @@ with gr.Blocks(css=css)  as app: 
     | 
|
| 329 | 
         
             
                page_slider.change(fn=lambda x: update_output(x), inputs=page_slider, outputs=[page_slider, output_html])
         
     | 
| 330 | 
         | 
| 331 | 
         
             
                # Initialize the display for the first page
         
     | 
| 332 | 
         
            -
                 
     | 
| 333 | 
         | 
| 334 | 
         
             
            app.launch(share=True) 
         
     | 
| 
         | 
|
| 329 | 
         
             
                page_slider.change(fn=lambda x: update_output(x), inputs=page_slider, outputs=[page_slider, output_html])
         
     | 
| 330 | 
         | 
| 331 | 
         
             
                # Initialize the display for the first page
         
     | 
| 332 | 
         
            +
                content = showcase(page_num.value)
         
     | 
| 333 | 
         | 
| 334 | 
         
             
            app.launch(share=True) 
         
     |