Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1249,7 +1249,8 @@ export class GridComponent
* @param url URL to open
* @param event Click event
*/
public onOpenURL(url: string, event: MouseEvent) {
public onOpenURL(url: string | any, event: MouseEvent) {
url = typeof url === 'string' ? url : url.href;
if (url?.startsWith(LIFT_REPORT_URL)) {
event.preventDefault();
const urlList = url.split('/');
Expand Down