mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-05 22:21:09 +02:00
Stand-alone Tagging: tagged places not coming first in GOTO list
This commit is contained in:
parent
840f3a3a2e
commit
b6e583087e
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ Column {
|
||||||
'require_online=true',
|
'require_online=true',
|
||||||
'protocol=' + encodeURIComponent(Window.protocolSignature())
|
'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;
|
itemsPerPage: 4;
|
||||||
processPage: function (data) {
|
processPage: function (data) {
|
||||||
return data.user_stories.map(makeModelData);
|
return data.user_stories.map(makeModelData);
|
||||||
|
|
Loading…
Reference in a new issue