Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
f7c29bf
Cleanup aiAssistantFlyoutMode feature flag
patrykkopycinski May 8, 2024
e3c6148
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski May 8, 2024
7015e04
fix
patrykkopycinski May 8, 2024
e115338
fix
patrykkopycinski May 8, 2024
726e044
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski May 8, 2024
35cbe61
cleanup
patrykkopycinski May 10, 2024
53da06a
fix
patrykkopycinski May 10, 2024
eb58aee
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine May 10, 2024
544554f
fix
patrykkopycinski May 13, 2024
0f60f57
Merge branch 'chore/assistant-modal-cleanup' of github.com:patrykkopy…
patrykkopycinski May 13, 2024
1f284ed
Merge branch 'main' into chore/assistant-modal-cleanup
patrykkopycinski May 14, 2024
1f78213
merge
patrykkopycinski May 15, 2024
c180b5b
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski May 15, 2024
36480a8
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine May 15, 2024
8a9ef8c
fix
patrykkopycinski May 16, 2024
1789fe3
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski May 16, 2024
dfbce5f
fix
patrykkopycinski May 16, 2024
d355cab
types
patrykkopycinski May 16, 2024
3def421
fix
patrykkopycinski May 16, 2024
820e01a
Merge branch 'main' into chore/assistant-modal-cleanup
patrykkopycinski May 16, 2024
e97496f
Merge branch 'main' into chore/assistant-modal-cleanup
patrykkopycinski May 17, 2024
6bca407
Merge branch 'main' into chore/assistant-modal-cleanup
patrykkopycinski May 17, 2024
5531f37
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski May 19, 2024
20c5f15
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski Jun 30, 2024
48493a7
fix
patrykkopycinski Jun 30, 2024
0322c3f
fix
patrykkopycinski Jul 1, 2024
e8b19fe
Merge branch 'main' into chore/assistant-modal-cleanup
patrykkopycinski Jul 1, 2024
74fda9f
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski Jul 2, 2024
3b63b82
Merge branch 'main' of github.com:elastic/kibana into chore/assistant…
patrykkopycinski Jul 7, 2024
b6b97f0
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Jul 8, 2024
f81219d
cleanup
patrykkopycinski Jul 8, 2024
4a1d519
Merge branch 'chore/assistant-modal-cleanup' of github.com:patrykkopy…
patrykkopycinski Jul 8, 2024
7036fd7
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
kibanamachine Jul 8, 2024
81d5b19
fix
patrykkopycinski Jul 8, 2024
7757c8a
Merge branch 'chore/assistant-modal-cleanup' of github.com:patrykkopy…
patrykkopycinski Jul 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@
* 2.0.
*/

import { Replacements } from '../../schemas';

/** This mock returns the reverse of `value` */
export const mockGetAnonymizedValue = ({
currentReplacements,
rawValue,
}: {
currentReplacements: Replacements | undefined;
rawValue: string;
}): string => rawValue.split('').reverse().join('');
export const mockGetAnonymizedValue = ({ rawValue }: { rawValue: string }): string =>
rawValue.split('').reverse().join('');

This file was deleted.

Loading