- 
          
 - 
                Notifications
    
You must be signed in to change notification settings  - Fork 608
 
Closed
Description
Good morning,
There's a minor bug in the findPrevRowNode function of the table extension. The while loop's condition is while(prev.children), which evaluates to true if children is empty (e.g. []). When this occurs the variable last is then assigned null, which throws a null pointer at if(!last.tr).
You can simply change the while loop to while(prev.children && prev.children.length) to fix this.
Browser: Google Chrome 56.0.2924.87 on Win7
Kind Regards,
MLC
Metadata
Metadata
Assignees
Labels
No labels