Textarea rows to display not working

Hi William,

I’m able to reproduce the issue, and wanted to offer a workaround for you to try.
Adding this CSS to the affected page should get the behavior you’re looking for. Note that you’ll need to replace “TestTable” with the unique Id of the table you’re working on.

#TestTable pre {
height:fit-content;
}
#TestTable textarea {
height:100%;
}

Here’s XML for a simple page I created to investigate this, with the workaround set up. Can you let me know if this will work for you?

    
        
            
                
                
                
                
            
            
            
        
    
    
        
            
                
                    
                        
                        
                        
                        
                    
                    
                        
                        
                    
                    
                        
                        
                    
                    
                        
                    
                
            
            
                
                
                
                    
                        
                        
                    
                
            
        
    
    
        
        
        
            #TestTable pre {
    height:fit-content;
}
#TestTable textarea {
    height:100%;
}
        
        
    
    
        
    

```