From 7d62d0ee3826e98a979f60e9ae1cad9d9a8fbae5 Mon Sep 17 00:00:00 2001 From: Kshitij Tandon Date: Tue, 3 Sep 2024 11:26:49 +0530 Subject: [PATCH 1/7] Fixed action button padding and removed plus sign in some pages Signed-off-by: Kshitij Tandon --- public/pages/Aliases/containers/AliasActions/index.tsx | 2 +- .../CreateAlias/__snapshots__/CreateAlias.test.tsx.snap | 1 - public/pages/Aliases/containers/CreateAlias/index.tsx | 1 - public/pages/CreateIndex/containers/IndexForm/index.tsx | 9 +-------- .../containers/TemplateDetail/TemplateDetail.tsx | 1 - .../__snapshots__/TemplateDetail.test.tsx.snap | 1 - public/pages/Indices/containers/IndicesActions/index.tsx | 2 +- .../ManagedIndexControls/ManagedIndexControls.tsx | 7 ------- .../containers/ManagedIndices/ManagedIndices.tsx | 2 +- .../ShrinkIndex/container/ShrinkIndex/ShrinkIndex.tsx | 1 - .../ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap | 3 --- .../Templates/containers/TemplatesActions/index.tsx | 2 +- .../Transforms/containers/Transforms/Transforms.tsx | 4 ++-- 13 files changed, 7 insertions(+), 29 deletions(-) diff --git a/public/pages/Aliases/containers/AliasActions/index.tsx b/public/pages/Aliases/containers/AliasActions/index.tsx index 0b467d78e..9601e856b 100644 --- a/public/pages/Aliases/containers/AliasActions/index.tsx +++ b/public/pages/Aliases/containers/AliasActions/index.tsx @@ -54,7 +54,7 @@ export default function AliasesActions(props: AliasesActionsProps) { <> Actions diff --git a/public/pages/Aliases/containers/CreateAlias/__snapshots__/CreateAlias.test.tsx.snap b/public/pages/Aliases/containers/CreateAlias/__snapshots__/CreateAlias.test.tsx.snap index 68c15e74f..2103c2ef7 100644 --- a/public/pages/Aliases/containers/CreateAlias/__snapshots__/CreateAlias.test.tsx.snap +++ b/public/pages/Aliases/containers/CreateAlias/__snapshots__/CreateAlias.test.tsx.snap @@ -232,7 +232,6 @@ HTMLCollection [ - EuiIconMock diff --git a/public/pages/Aliases/containers/CreateAlias/index.tsx b/public/pages/Aliases/containers/CreateAlias/index.tsx index dd50a20bf..a72291886 100644 --- a/public/pages/Aliases/containers/CreateAlias/index.tsx +++ b/public/pages/Aliases/containers/CreateAlias/index.tsx @@ -206,7 +206,6 @@ export default function CreateAlias(props: ICreateAliasProps) { fill color="primary" data-test-subj="createAliasButton" - iconType={isEdit ? undefined : "plus"} onClick={async () => { const { errors, values } = (await formGenerateRef.current?.validatePromise()) || {}; if (errors) { diff --git a/public/pages/CreateIndex/containers/IndexForm/index.tsx b/public/pages/CreateIndex/containers/IndexForm/index.tsx index ebd911e56..8376db37f 100644 --- a/public/pages/CreateIndex/containers/IndexForm/index.tsx +++ b/public/pages/CreateIndex/containers/IndexForm/index.tsx @@ -463,7 +463,6 @@ export class IndexForm extends Component {hideButtons ? null : ( <> - @@ -472,13 +471,7 @@ export class IndexForm extends Component - + {isEdit ? "Update" : "Create"} diff --git a/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx b/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx index bbe0f4784..d4d9c8720 100644 --- a/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx +++ b/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx @@ -503,7 +503,6 @@ const TemplateDetail = (props: TemplateDetailProps, ref: Ref) => }} isLoading={isSubmitting} data-test-subj="CreateIndexTemplateCreateButton" - iconType={"plus"} > Create template diff --git a/public/pages/CreateIndexTemplate/containers/TemplateDetail/__snapshots__/TemplateDetail.test.tsx.snap b/public/pages/CreateIndexTemplate/containers/TemplateDetail/__snapshots__/TemplateDetail.test.tsx.snap index 11270dbc5..c042f03bb 100644 --- a/public/pages/CreateIndexTemplate/containers/TemplateDetail/__snapshots__/TemplateDetail.test.tsx.snap +++ b/public/pages/CreateIndexTemplate/containers/TemplateDetail/__snapshots__/TemplateDetail.test.tsx.snap @@ -1262,7 +1262,6 @@ exports[` spec render component in non-edit-mode 1`] = ` - EuiIconMock diff --git a/public/pages/Indices/containers/IndicesActions/index.tsx b/public/pages/Indices/containers/IndicesActions/index.tsx index 3b88e607a..9640af9c3 100644 --- a/public/pages/Indices/containers/IndicesActions/index.tsx +++ b/public/pages/Indices/containers/IndicesActions/index.tsx @@ -137,7 +137,7 @@ export default function IndicesActions(props: IndicesActionsProps) { {({ onShow }) => ( Actions diff --git a/public/pages/ManagedIndices/components/ManagedIndexControls/ManagedIndexControls.tsx b/public/pages/ManagedIndices/components/ManagedIndexControls/ManagedIndexControls.tsx index ad32ccdff..02a694f77 100644 --- a/public/pages/ManagedIndices/components/ManagedIndexControls/ManagedIndexControls.tsx +++ b/public/pages/ManagedIndices/components/ManagedIndexControls/ManagedIndexControls.tsx @@ -9,21 +9,14 @@ import { ArgsWithError, EuiFlexGroup, EuiFlexItem, - EuiPagination, EuiSearchBar, EuiCompressedSwitch, - EuiButton, - EuiPopover, - EuiContextMenuPanel, EuiButtonIcon, EuiButtonEmpty, EuiSpacer, } from "@elastic/eui"; import { DataStream } from "../../../../../server/models/interfaces"; -import { ManagedIndices } from "../../containers/ManagedIndices/ManagedIndices"; -import { ManagedIndexItem } from "plugins/index-management-dashboards-plugin/models/interfaces"; import { getUISettings } from "../../../../services/Services"; -import { size } from "lodash"; interface ManagedIndexControlsProps { search: string; diff --git a/public/pages/ManagedIndices/containers/ManagedIndices/ManagedIndices.tsx b/public/pages/ManagedIndices/containers/ManagedIndices/ManagedIndices.tsx index a22cb9571..1c52b62e9 100644 --- a/public/pages/ManagedIndices/containers/ManagedIndices/ManagedIndices.tsx +++ b/public/pages/ManagedIndices/containers/ManagedIndices/ManagedIndices.tsx @@ -601,7 +601,7 @@ export class ManagedIndices extends MDSEnabledComponent diff --git a/public/pages/ShrinkIndex/container/ShrinkIndex/ShrinkIndex.tsx b/public/pages/ShrinkIndex/container/ShrinkIndex/ShrinkIndex.tsx index 6a1e68dbd..a14f36a1c 100644 --- a/public/pages/ShrinkIndex/container/ShrinkIndex/ShrinkIndex.tsx +++ b/public/pages/ShrinkIndex/container/ShrinkIndex/ShrinkIndex.tsx @@ -705,7 +705,6 @@ class ShrinkIndex extends Component { operationType={OperationType.SHRINK} /> - diff --git a/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap b/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap index 2a3c40d49..c7fc7e302 100644 --- a/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap +++ b/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap @@ -841,9 +841,6 @@ exports[` spec renders the component 1`] = `
-
diff --git a/public/pages/Templates/containers/TemplatesActions/index.tsx b/public/pages/Templates/containers/TemplatesActions/index.tsx index d92d26094..d35a2e8c5 100644 --- a/public/pages/Templates/containers/TemplatesActions/index.tsx +++ b/public/pages/Templates/containers/TemplatesActions/index.tsx @@ -36,7 +36,7 @@ export default function TemplatesActions(props: TemplatesActionsProps) { <> Actions diff --git a/public/pages/Transforms/containers/Transforms/Transforms.tsx b/public/pages/Transforms/containers/Transforms/Transforms.tsx index 3eca49a72..87f3b7ce7 100644 --- a/public/pages/Transforms/containers/Transforms/Transforms.tsx +++ b/public/pages/Transforms/containers/Transforms/Transforms.tsx @@ -293,7 +293,7 @@ export class Transforms extends MDSEnabledComponent @@ -364,7 +364,7 @@ export class Transforms extends MDSEnabledComponent From aac8c34f77f3298c2bdc6402c65ef77889fe33e2 Mon Sep 17 00:00:00 2001 From: Kshitij Tandon Date: Tue, 3 Sep 2024 12:06:40 +0530 Subject: [PATCH 2/7] Fixed a bug in Transform and Rollup Details pages Signed-off-by: Kshitij Tandon --- .../RollupDetails/RollupDetails.tsx | 2 - .../__snapshots__/RollupDetails.test.tsx.snap | 580 +++++++++++++++++- .../Transforms/TransformDetails.tsx | 2 - .../TransformDetails.test.tsx.snap | 479 ++++++++++++++- 4 files changed, 1055 insertions(+), 8 deletions(-) diff --git a/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx b/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx index 3c66ef00f..71d4ddb8d 100644 --- a/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx +++ b/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx @@ -125,12 +125,10 @@ export class RollupDetails extends Component spec renders the component 1`] = ` -
- Testing rollup landing page +
+
+
+
+

+

+
+
+
+
+
+ EuiIconMock +
+
+ Disabled +
+
+
+
+
+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+
+
+
+

+ General information +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+ Name +
+
+
+
+
+
+
+ Source index +
+
+
+
+
+
+
+ Target index +
+
+
+
+
+
+
+ Schedule +
+
+
+
+
+
+
+ Description +
+
+ - +
+
+
+
+
+
+ Last updated +
+
+ - +
+
+
+
+
+
+ Pages per execution +
+
+ 1000 +
+
+
+
+
+
+
+
+
+
+
+
+

+ Rollup status +

+
+
+
+
+
+
+
+
+
+ Current rollup window +
+
+ - +
+
+
+
+
+
+ Status +
+
+ - +
+
+
+
+
+
+ Rollup indexed +
+
+ - +
+
+
+
+
+
+ Indexed time (ms) +
+
+ - +
+
+
+
+
+
+ Document processed +
+
+ - +
+
+
+
+
+
+ Search time (ms) +
+
+ - +
+
+
+
+
+
+ Page processed +
+
+ - +
+
+
+
+
+
+
+
+
+
+
+
+

+ Aggregation and metrics settings +

+
+
+
+
+
+
+

+ Additional metrics +

+
+
+
+
+
+ Timestamp field +
+
+
+
+
+
+
+ Interval +
+
+
+
+
+
+
+ Timezone +
+
+ UTC +0 +
+
+
+
+
+
+
+
+

+ Additional aggregations +

+
+
+
+
+
+
+

+ (0) +

+
+
+
+
+
+
+
+ No fields added for aggregation +
+
+
+
+
+
+

+ Additional metrics +

+
+
+
+
+
+
+

+ (0) +

+
+
+
+
+
+
+
+ No fields added for metrics +
+
+
+
+
+
`; diff --git a/public/pages/Transforms/containers/Transforms/TransformDetails.tsx b/public/pages/Transforms/containers/Transforms/TransformDetails.tsx index 0a9974a61..826e434d9 100644 --- a/public/pages/Transforms/containers/Transforms/TransformDetails.tsx +++ b/public/pages/Transforms/containers/Transforms/TransformDetails.tsx @@ -114,12 +114,10 @@ export class TransformDetails extends Component spec renders the component 1`] = ` -
- Testing transform landing page +
+
+
+
+

+

+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+

+ General information +

+
+
+
+
+
+ +
+
+
+
+
+
+
+
+
+
+
+ Name +
+
+
+
+
+
+
+ State +
+
+ Enabled on 1/1/1970, 5:30:00 AM +
+
+
+
+
+
+ Source index +
+
+
+
+
+
+
+ Schedule +
+
+
+
+
+
+
+ Description +
+
+ - +
+
+
+
+
+
+
+
+
+
+
+
+ Source index filter +
+
+
+
+
+
+
+ Pages per execution +
+
+ 1000 +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Target index +
+
+
+
+
+
+
+
+
+
+
+

+ Transform Status +

+
+
+
+
+
+
+
+
+ Status +
+
+ - +
+
+
+
+
+
+ Documents indexed +
+
+ - +
+
+
+
+
+
+ Document processed +
+
+ - +
+
+
+
+
+
+ Indexed time (ms) +
+
+ - +
+
+
+
+
+
+
+
+ Page processed +
+
+ - +
+
+
+
+
+
+ Search time (ms) +
+
+ - +
+
+
+
+
+
+
+
+
+
+

+ Transform Settings +

+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+
+
+ Preview result based on sample data +
+
+
+
+
+

+ No preview available +

+
+
+
+
+
+
+
+
+
+
`; From c3a6eda284526447f99df446d3226bbea3b446bd Mon Sep 17 00:00:00 2001 From: Kshitij Tandon Date: Tue, 3 Sep 2024 13:06:02 +0530 Subject: [PATCH 3/7] Removed some commented code Signed-off-by: Kshitij Tandon --- .../TemplateDetail/TemplateDetail.tsx | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx b/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx index d4d9c8720..e2212afde 100644 --- a/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx +++ b/public/pages/CreateIndexTemplate/containers/TemplateDetail/TemplateDetail.tsx @@ -402,33 +402,6 @@ const TemplateDetail = (props: TemplateDetailProps, ref: Ref) => ) : null} - {/* - { - isEdit && selectedTabId === TABS_ENUM.SUMMARY ? ( - -

Preview template

-
- ) : values._meta?.flow === FLOW_ENUM.COMPONENTS ? ( - -

Override template definition

-
- ) : ( - -

Template definition

-
- ) - } - { - (!isEdit || selectedTabId !== TABS_ENUM.SUMMARY) && values._meta?.flow === FLOW_ENUM.COMPONENTS - ? - Provide additional configurations such as index aliases, settings, and mappings. Configurations defined in this section will take precedent if they overlap with the associated component templates. - - : undefined - } - {(!isEdit || selectedTabId !== TABS_ENUM.SUMMARY) && values._meta?.flow === FLOW_ENUM.COMPONENTS - ? : undefined - } -
*/} Date: Tue, 3 Sep 2024 13:36:44 +0530 Subject: [PATCH 4/7] Retracting couple of changes from previous commits Signed-off-by: Kshitij Tandon --- .../RollupDetails/RollupDetails.tsx | 1 + .../__snapshots__/RollupDetails.test.tsx.snap | 580 +----------------- .../Transforms/TransformDetails.tsx | 1 + .../TransformDetails.test.tsx.snap | 479 +-------------- 4 files changed, 6 insertions(+), 1055 deletions(-) diff --git a/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx b/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx index 71d4ddb8d..3be1e4f03 100644 --- a/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx +++ b/public/pages/RollupDetails/containers/RollupDetails/RollupDetails.tsx @@ -129,6 +129,7 @@ export class RollupDetails extends Component spec renders the component 1`] = ` -
-
-
-
-

-

-
-
-
-
-
- EuiIconMock -
-
- Disabled -
-
-
-
-
-
-
- -
-
- -
-
- -
-
- -
-
-
-
-
-
-
-
-
-

- General information -

-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
- Name -
-
-
-
-
-
-
- Source index -
-
-
-
-
-
-
- Target index -
-
-
-
-
-
-
- Schedule -
-
-
-
-
-
-
- Description -
-
- - -
-
-
-
-
-
- Last updated -
-
- - -
-
-
-
-
-
- Pages per execution -
-
- 1000 -
-
-
-
-
-
-
-
-
-
-
-
-

- Rollup status -

-
-
-
-
-
-
-
-
-
- Current rollup window -
-
- - -
-
-
-
-
-
- Status -
-
- - -
-
-
-
-
-
- Rollup indexed -
-
- - -
-
-
-
-
-
- Indexed time (ms) -
-
- - -
-
-
-
-
-
- Document processed -
-
- - -
-
-
-
-
-
- Search time (ms) -
-
- - -
-
-
-
-
-
- Page processed -
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-

- Aggregation and metrics settings -

-
-
-
-
-
-
-

- Additional metrics -

-
-
-
-
-
- Timestamp field -
-
-
-
-
-
-
- Interval -
-
-
-
-
-
-
- Timezone -
-
- UTC +0 -
-
-
-
-
-
-
-
-

- Additional aggregations -

-
-
-
-
-
-
-

- (0) -

-
-
-
-
-
-
-
- No fields added for aggregation -
-
-
-
-
-
-

- Additional metrics -

-
-
-
-
-
-
-

- (0) -

-
-
-
-
-
-
-
- No fields added for metrics -
-
-
-
-
-
+
+ Testing rollup landing page
`; diff --git a/public/pages/Transforms/containers/Transforms/TransformDetails.tsx b/public/pages/Transforms/containers/Transforms/TransformDetails.tsx index 826e434d9..328cf8bd9 100644 --- a/public/pages/Transforms/containers/Transforms/TransformDetails.tsx +++ b/public/pages/Transforms/containers/Transforms/TransformDetails.tsx @@ -118,6 +118,7 @@ export class TransformDetails extends Component spec renders the component 1`] = ` -
-
-
-
-

-

-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-

- General information -

-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
- Name -
-
-
-
-
-
-
- State -
-
- Enabled on 1/1/1970, 5:30:00 AM -
-
-
-
-
-
- Source index -
-
-
-
-
-
-
- Schedule -
-
-
-
-
-
-
- Description -
-
- - -
-
-
-
-
-
-
-
-
-
-
-
- Source index filter -
-
-
-
-
-
-
- Pages per execution -
-
- 1000 -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Target index -
-
-
-
-
-
-
-
-
-
-
-

- Transform Status -

-
-
-
-
-
-
-
-
- Status -
-
- - -
-
-
-
-
-
- Documents indexed -
-
- - -
-
-
-
-
-
- Document processed -
-
- - -
-
-
-
-
-
- Indexed time (ms) -
-
- - -
-
-
-
-
-
-
-
- Page processed -
-
- - -
-
-
-
-
-
- Search time (ms) -
-
- - -
-
-
-
-
-
-
-
-
-
-

- Transform Settings -

-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
- Preview result based on sample data -
-
-
-
-
-

- No preview available -

-
-
-
-
-
-
-
-
-
-
+
+ Testing transform landing page
`; From 9378c6adcfbcae8ba3566f8f348396ec9571685d Mon Sep 17 00:00:00 2001 From: Kshitij Tandon Date: Tue, 3 Sep 2024 14:35:07 +0530 Subject: [PATCH 5/7] Fixed spacing between buttons in bottom bar Signed-off-by: Kshitij Tandon --- .../pages/ChangePolicy/containers/ChangePolicy/ChangePolicy.tsx | 2 +- .../ChangePolicy/__snapshots__/ChangePolicy.test.tsx.snap | 2 +- public/pages/CreateIndex/containers/IndexForm/index.tsx | 2 +- public/pages/Reindex/container/Reindex/Reindex.tsx | 2 +- .../container/Reindex/__snapshots__/Reindex.test.tsx.snap | 2 +- public/pages/ShrinkIndex/container/ShrinkIndex/ShrinkIndex.tsx | 2 +- .../ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap | 2 +- .../SplitIndex/components/SplitIndexForm/SplitIndexForm.tsx | 2 +- public/pages/Transforms/containers/Transforms/EditTransform.tsx | 2 +- .../Transforms/__snapshots__/EditTransform.test.tsx.snap | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/public/pages/ChangePolicy/containers/ChangePolicy/ChangePolicy.tsx b/public/pages/ChangePolicy/containers/ChangePolicy/ChangePolicy.tsx index 39eb97664..d07953bec 100644 --- a/public/pages/ChangePolicy/containers/ChangePolicy/ChangePolicy.tsx +++ b/public/pages/ChangePolicy/containers/ChangePolicy/ChangePolicy.tsx @@ -190,7 +190,7 @@ export class ChangePolicy extends Component - + Cancel diff --git a/public/pages/ChangePolicy/containers/ChangePolicy/__snapshots__/ChangePolicy.test.tsx.snap b/public/pages/ChangePolicy/containers/ChangePolicy/__snapshots__/ChangePolicy.test.tsx.snap index 8cba4876d..cc14a9634 100644 --- a/public/pages/ChangePolicy/containers/ChangePolicy/__snapshots__/ChangePolicy.test.tsx.snap +++ b/public/pages/ChangePolicy/containers/ChangePolicy/__snapshots__/ChangePolicy.test.tsx.snap @@ -415,7 +415,7 @@ exports[` spec renders the component 1`] = ` class="euiSpacer euiSpacer--l" />
- + Cancel diff --git a/public/pages/Reindex/container/Reindex/Reindex.tsx b/public/pages/Reindex/container/Reindex/Reindex.tsx index 1fe900b30..fc9a8e4b5 100644 --- a/public/pages/Reindex/container/Reindex/Reindex.tsx +++ b/public/pages/Reindex/container/Reindex/Reindex.tsx @@ -728,7 +728,7 @@ class Reindex extends Component { - + Cancel diff --git a/public/pages/Reindex/container/Reindex/__snapshots__/Reindex.test.tsx.snap b/public/pages/Reindex/container/Reindex/__snapshots__/Reindex.test.tsx.snap index cb4858c19..5f6a8f974 100644 --- a/public/pages/Reindex/container/Reindex/__snapshots__/Reindex.test.tsx.snap +++ b/public/pages/Reindex/container/Reindex/__snapshots__/Reindex.test.tsx.snap @@ -390,7 +390,7 @@ exports[` spec renders the component 1`] = ` class="euiSpacer euiSpacer--l" />
{ operationType={OperationType.SHRINK} /> - + Cancel diff --git a/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap b/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap index c7fc7e302..dfc88fc2e 100644 --- a/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap +++ b/public/pages/ShrinkIndex/container/ShrinkIndex/__snapshots__/ShrinkIndex.test.tsx.snap @@ -842,7 +842,7 @@ exports[` spec renders the component 1`] = ` class="euiSpacer euiSpacer--l" />
/> - + Cancel diff --git a/public/pages/Transforms/containers/Transforms/EditTransform.tsx b/public/pages/Transforms/containers/Transforms/EditTransform.tsx index 69c8eef88..efb7cf7a2 100644 --- a/public/pages/Transforms/containers/Transforms/EditTransform.tsx +++ b/public/pages/Transforms/containers/Transforms/EditTransform.tsx @@ -186,7 +186,7 @@ export class EditTransform extends Component - + Cancel diff --git a/public/pages/Transforms/containers/Transforms/__snapshots__/EditTransform.test.tsx.snap b/public/pages/Transforms/containers/Transforms/__snapshots__/EditTransform.test.tsx.snap index bcd30143c..058d8f909 100644 --- a/public/pages/Transforms/containers/Transforms/__snapshots__/EditTransform.test.tsx.snap +++ b/public/pages/Transforms/containers/Transforms/__snapshots__/EditTransform.test.tsx.snap @@ -540,7 +540,7 @@ exports[` spec renders the component 1`] = ` class="euiSpacer euiSpacer--l" />
Date: Wed, 4 Sep 2024 10:54:48 +0530 Subject: [PATCH 6/7] Added compressed prop to DatePicker in Snapshot Policy Signed-off-by: Kshitij Tandon --- .../components/CronSchedule/CronSchedule.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx b/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx index 05daa9c4d..8d8b6040c 100644 --- a/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx +++ b/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx @@ -120,6 +120,7 @@ const CronSchedule = ({ let startTimeContent; startTimeContent = ( Date: Wed, 4 Sep 2024 11:07:45 +0530 Subject: [PATCH 7/7] Minor change in previous commit Signed-off-by: Kshitij Tandon --- .../components/CronSchedule/CronSchedule.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx b/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx index 8d8b6040c..bf07afd38 100644 --- a/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx +++ b/public/pages/CreateSnapshotPolicy/components/CronSchedule/CronSchedule.tsx @@ -120,7 +120,7 @@ const CronSchedule = ({ let startTimeContent; startTimeContent = (