Skip to content
Merged
Show file tree
Hide file tree
Changes from 43 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
6031d22
add template btn
angorayc May 13, 2020
c38e8ac
rename file
angorayc May 13, 2020
d9dc0b7
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc May 14, 2020
b5df002
unit test
angorayc May 14, 2020
22c875c
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc May 15, 2020
37ee874
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc May 15, 2020
9d8bae5
replace connector with useDispatch
angorayc May 15, 2020
6c806a0
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc May 15, 2020
d8ce05b
comments
angorayc May 15, 2020
f41170f
add disableTemplate
angorayc May 18, 2020
42aabde
rename flag
angorayc May 18, 2020
7244827
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc May 18, 2020
6d36589
fix types
angorayc May 18, 2020
38686d7
remove snapshot
angorayc May 18, 2020
20075bc
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc May 28, 2020
a28f04f
fix types
angorayc May 29, 2020
2a70bb6
Merge branch 'master' into template-btn
elasticmachine Jun 1, 2020
7e49075
add fix action
angorayc Jun 1, 2020
dc4c13e
move disableTemplate flag into constants
angorayc Jun 1, 2020
93e2138
fix types
angorayc Jun 1, 2020
5d29f12
Fix timelineType
patrykkopycinski Jun 1, 2020
b1c436c
button style
angorayc Jun 2, 2020
5f023a8
unit test
angorayc Jun 2, 2020
caa31e0
unit test
angorayc Jun 2, 2020
73789cf
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc Jun 2, 2020
b86578a
fix types
angorayc Jun 2, 2020
27cc4d2
Update x-pack/plugins/siem/public/timelines/components/timeline/prope…
angorayc Jun 2, 2020
1dcb918
fix unit test
angorayc Jun 3, 2020
f38a817
add unit test
angorayc Jun 3, 2020
1fa65ff
add unit test
angorayc Jun 3, 2020
256d907
fix types
angorayc Jun 3, 2020
a7eba1f
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc Jun 3, 2020
9ef7ff3
fix tests
angorayc Jun 4, 2020
5fddf41
Merge remote-tracking branch 'upstream/master' into template-btn
angorayc Jun 4, 2020
3832847
fix unit
angorayc Jun 4, 2020
924ed69
fix i18n key
angorayc Jun 4, 2020
d989582
remove snapshot
angorayc Jun 4, 2020
1871a75
Merge branch 'master' into template-btn
elasticmachine Jun 4, 2020
56a47af
Merge branch 'master' into template-btn
elasticmachine Jun 5, 2020
c8313a4
fix crud
angorayc Jun 5, 2020
5e7c7b4
fix crud
angorayc Jun 5, 2020
3ea0722
Merge branch 'template-btn' of github.com:angorayc/kibana into templa…
angorayc Jun 5, 2020
5705d2e
fix unit
angorayc Jun 5, 2020
570f917
Merge branch 'master' into template-btn
elasticmachine Jun 5, 2020
ad24a6a
fix tag
angorayc Jun 5, 2020
5244333
Merge branch 'template-btn' of github.com:angorayc/kibana into templa…
angorayc Jun 5, 2020
89ad223
Merge branch 'master' into template-btn
elasticmachine Jun 8, 2020
7749f4c
fix unit
angorayc Jun 8, 2020
9161f97
disable template timeline
angorayc Jun 8, 2020
53479e8
Merge branch 'master' into template-btn
elasticmachine Jun 9, 2020
4e1ec59
Update use_create_timeline.tsx
patrykkopycinski Jun 9, 2020
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
6 changes: 6 additions & 0 deletions x-pack/plugins/security_solution/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,3 +142,9 @@ export const showAllOthersBucket: string[] = [
'destination.ip',
'user.name',
];

/**
* CreateTemplateTimelineBtn
* Remove the comment here to enable template timeline
*/
export const disableTemplate = false;

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ describe('Matrix Histogram Component', () => {
});
describe('on initial load', () => {
test('it renders MatrixLoader', () => {
expect(wrapper.html()).toMatchSnapshot();
expect(wrapper.find('MatrixLoader').exists()).toBe(true);
});
});
Expand Down Expand Up @@ -117,7 +116,6 @@ describe('Matrix Histogram Component', () => {
wrapper.update();
});
test('it renders no MatrixLoader', () => {
expect(wrapper.html()).toMatchSnapshot();
expect(wrapper.find(`MatrixLoader`).exists()).toBe(false);
});

Expand Down
Loading