mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Fix URLs from displaying too long in saved objects management UI (#37987)
* Fix URLs from displaying too long * Add encodeURIComponent
This commit is contained in:
parent
8bdecb0f36
commit
9aa2ca8465
1 changed files with 1 additions and 1 deletions
|
@ -201,7 +201,7 @@ export default function (kibana) {
|
|||
defaultSearchField: 'url',
|
||||
isImportableAndExportable: true,
|
||||
getTitle(obj) {
|
||||
return obj.attributes.url;
|
||||
return `/goto/${encodeURIComponent(obj.id)}`;
|
||||
},
|
||||
},
|
||||
config: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue