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:
Mike Côté 2019-06-05 09:38:14 -04:00 committed by GitHub
parent 8bdecb0f36
commit 9aa2ca8465
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -201,7 +201,7 @@ export default function (kibana) {
defaultSearchField: 'url',
isImportableAndExportable: true,
getTitle(obj) {
return obj.attributes.url;
return `/goto/${encodeURIComponent(obj.id)}`;
},
},
config: {