Merge pull request #15215 from roxanneskelly/Case21790

Stand-alone Tagging: tagged places not coming first in GOTO list
This commit is contained in:
Roxanne Skelly 2019-03-19 11:25:43 -07:00 committed by GitHub
commit 80a1eaa3fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,7 @@ Column {
'require_online=true',
'protocol=' + encodeURIComponent(Window.protocolSignature())
];
endpoint: '/api/v1/user_stories?' + options.join('&');
endpoint: '/api/v1/user_stories?' + options.join('&') + (PlatformInfo.isStandalone() ? '&standalone_optimized=true' : '')
itemsPerPage: 4;
processPage: function (data) {
return data.user_stories.map(makeModelData);