Fixed
Pinned fields
Click on the next to a field label to start pinning.
Details
Details
Assignee
Brett Lawson
Brett LawsonReporter
Michael Reiche
Michael ReicheStory Points
1
Components
Fix versions
Affects versions
Priority
Instabug
Open Instabug
PagerDuty
PagerDuty
Sentry
Sentry
Zendesk Support
Zendesk Support
Created January 23, 2020 at 6:23 PM
Updated April 24, 2020 at 8:54 PM
Resolved February 10, 2020 at 9:48 PM
searchexecutor.js query() has index name hard-coded to 'test', does not get indexName from options. After the line
queryObj.indexName = 'test';
add:
if (options.indexName !== undefined) {
queryObj.indexName = options.indexName;
}