Skip to content

Commit

Permalink
address review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonelizabeth committed Mar 29, 2022
1 parent 0b7ee9c commit ddf4412
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const ComponentTemplateListContainer: React.FunctionComponent<

useExecutionContext(executionContext, {
type: 'application',
page: 'indexManagementComponentTemplates',
page: 'indexManagementComponentTemplatesTab',
});

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const DataStreamList: React.FunctionComponent<RouteComponentProps<MatchPa

useExecutionContext(executionContext, {
type: 'application',
page: 'indexManagementDataStreams',
page: 'indexManagementDataStreamsTab',
});

const [isIncludeStatsChecked, setIsIncludeStatsChecked] = useState(false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const IndexList: React.FunctionComponent<RouteComponentProps> = ({ histor

useExecutionContext(executionContext, {
type: 'application',
page: 'indexManagementIndices',
page: 'indexManagementIndicesTab',
});

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const TemplateList: React.FunctionComponent<RouteComponentProps<MatchPara

useExecutionContext(executionContext, {
type: 'application',
page: 'indexManagementIndexTemplates',
page: 'indexManagementIndexTemplatesTab',
});

const [filters, setFilters] = useState<Filters<FilterName>>({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export const PolicyList: React.FunctionComponent<RouteComponentProps<MatchParams

useExecutionContext(core.executionContext, {
type: 'application',
page: 'snapshotRestorePolicies',
page: 'snapshotRestorePolicyTab',
});

let content: JSX.Element;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const RepositoryList: React.FunctionComponent<RouteComponentProps<MatchPa

useExecutionContext(core.executionContext, {
type: 'application',
page: 'snapshotRestoreRepositories',
page: 'snapshotRestoreRepositoryTab',
});

let content;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const RestoreList: React.FunctionComponent = () => {

useExecutionContext(core.executionContext, {
type: 'application',
page: 'snapshotRestoreRestores',
page: 'snapshotRestoreRestoreTab',
});

let content: JSX.Element;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export const SnapshotList: React.FunctionComponent<RouteComponentProps<MatchPara

useExecutionContext(core.executionContext, {
type: 'application',
page: 'snapshotRestoreSnapshots',
page: 'snapshotRestoreSnapshotTab',
});

// Allow deeplinking to list pre-filtered by repository name or by policy name
Expand Down

0 comments on commit ddf4412

Please sign in to comment.