Skip to content

Commit

Permalink
replace 'KUERY filter' with 'KQL syntax'
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Apr 13, 2023
1 parent f9c95cc commit 2eafaec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ describe('useCopyToClipboardAction', () => {
const { result } = renderHook(() => useCopyToClipboardAction());
const { getByLabelText } = render((result.current as Action).render(significantTerms[0]));

const button = getByLabelText('Copy field/value pair as KUERY filter to clipboard');
const button = getByLabelText('Copy field/value pair as KQL syntax to clipboard');

expect(button).toBeInTheDocument();

Expand All @@ -53,7 +53,7 @@ describe('useCopyToClipboardAction', () => {
const { result } = renderHook(() => useCopyToClipboardAction());
const { getByLabelText } = render((result.current as Action).render(groupTableItems[0]));

const button = getByLabelText('Copy group items as KUERY filter to clipboard');
const button = getByLabelText('Copy group items as KQL syntax to clipboard');

expect(button).toBeInTheDocument();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ import type { GroupTableItem, TableItemAction } from './types';
const copyToClipboardSignificantTermMessage = i18n.translate(
'xpack.aiops.spikeAnalysisTable.linksMenu.copyToClipboardSignificantTermMessage',
{
defaultMessage: 'Copy field/value pair as KUERY filter to clipboard',
defaultMessage: 'Copy field/value pair as KQL syntax to clipboard',
}
);

const copyToClipboardGroupMessage = i18n.translate(
'xpack.aiops.spikeAnalysisTable.linksMenu.copyToClipboardGroupMessage',
{
defaultMessage: 'Copy group items as KUERY filter to clipboard',
defaultMessage: 'Copy group items as KQL syntax to clipboard',
}
);

Expand Down

0 comments on commit 2eafaec

Please sign in to comment.