Stand-alone Tagging: tagged places not coming first in GOTO list

This commit is contained in:
Roxanne Skelly 2019-03-18 17:40:01 -07:00
parent 840f3a3a2e
commit b6e583087e

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);