Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

relabel searchkit tabs #29756

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions ext/search_kit/ang/crmSearchAdmin/crmSearchAdmin.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@
},
{
key: 'fields',
title: ts('Select Fields'),
title: ts('Field Transformations'),
icon: 'fa-columns',
},
{
key: 'settings',
title: ts('Configure Settings'),
title: ts('Save Options'),
icon: 'fa-gears',
},
{
key: 'query',
title: ts('Query Info'),
title: ts('Debug Info'),
icon: 'fa-info-circle',
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@

// Add callbacks for pre & post run
this.onPreRun.push(function(apiCalls) {
// So the raw SQL can be shown in the "Query Info" tab
// So the raw SQL can be shown in the "Debug Info" tab
apiCalls.run[2].debug = true;
});

this.onPostRun.push(function(apiResults) {
// Add debug output (e.g. raw SQL) to the "Query Info" tab
// Add debug output (e.g. raw SQL) to the "Debug Info" tab
ctrl.debug.sql = apiResults.run.debug.sql;
ctrl.debug.timeIndex = apiResults.run.debug.timeIndex;
});
Expand Down