Skip to content

Commit c5eedf4

Browse files
authored
fix: Hyperlink in Views table ignores urlQuery key (#2926)
1 parent fc3702a commit c5eedf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dashboard/Data/Views/Views.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ class Views extends TableView {
326326
url = '#';
327327
} else {
328328
url = value.isRelativeUrl
329-
? `apps/${this.context.slug}/${url}${value.query ? `?${new URLSearchParams(value.urlQuery).toString()}` : ''}`
329+
? `apps/${this.context.slug}/${url}${value.urlQuery ? `?${new URLSearchParams(value.urlQuery).toString()}` : ''}`
330330
: url;
331331
}
332332
// Sanitize text

0 commit comments

Comments
 (0)