Fix URLs from displaying too long in saved objects management UI (#37987) (#38109)

* Fix URLs from displaying too long

* Add encodeURIComponent
This commit is contained in:
Mike Côté 2019-06-05 11:20:41 -04:00 committed by GitHub
parent 5f17cd6da3
commit ad9145b7b0
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: {