You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running a delete on urlOptions[label][attr] at line 1559 triggers an undefined error if the label is not there, which will stop JS execution and thus show the processindicator forever, making the table unusable.
The fix is obviously a small check:
if ("label" in urlOptions && "attr" in urlOptions[label]) {
delete urlOptions[label][attr];
}
The text was updated successfully, but these errors were encountered:
Running a delete on urlOptions[label][attr] at line 1559 triggers an undefined error if the label is not there, which will stop JS execution and thus show the processindicator forever, making the table unusable.
The fix is obviously a small check:
The text was updated successfully, but these errors were encountered: