Skip to content

Commit

Permalink
Add missing prop and remove unused translation
Browse files Browse the repository at this point in the history
  • Loading branch information
jennypavlova committed Sep 28, 2023
1 parent b7363d8 commit 8f214c3
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ interface Props {
bounds: InfraWaffleMapBounds;
nodeType: InventoryItemType;
currentTime: number;
detailsItemId: string | null;
}

export const GroupOfGroups: React.FC<Props> = (props) => {
Expand All @@ -43,6 +44,7 @@ export const GroupOfGroups: React.FC<Props> = (props) => {
bounds={props.bounds}
nodeType={props.nodeType}
currentTime={props.currentTime}
detailsItemId={props.detailsItemId}
/>
))}
</Groups>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export const Map: React.FC<Props> = ({
bounds={bounds}
nodeType={nodeType}
currentTime={currentTime}
detailsItemId={detailsItemId}
/>
);
}
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/fr-FR.json
Original file line number Diff line number Diff line change
Expand Up @@ -18741,7 +18741,6 @@
"xpack.infra.hostsViewPage.tabs.metricsCharts.tx": "Réseau sortant (TX)",
"xpack.infra.hostsViewPage.tooltip.whatAreTheseMetricsLink": "Que sont ces indicateurs ?",
"xpack.infra.infra.nodeDetails.apmTabLabel": "APM",
"xpack.infra.infra.nodeDetails.createAlertLink": "Créer une règle d'inventaire",
"xpack.infra.infra.nodeDetails.openAsPage": "Ouvrir en tant que page",
"xpack.infra.inventory.alerting.groupActionVariableDescription": "Nom des données de reporting du groupe",
"xpack.infra.inventoryModel.container.displayName": "Conteneurs Docker",
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -18755,7 +18755,6 @@
"xpack.infra.hostsViewPage.tabs.metricsCharts.tx": "ネットワーク送信(TX)",
"xpack.infra.hostsViewPage.tooltip.whatAreTheseMetricsLink": "これらのメトリックは何か。",
"xpack.infra.infra.nodeDetails.apmTabLabel": "APM",
"xpack.infra.infra.nodeDetails.createAlertLink": "インベントリルールの作成",
"xpack.infra.infra.nodeDetails.openAsPage": "ページとして開く",
"xpack.infra.inventory.alerting.groupActionVariableDescription": "データを報告するグループの名前",
"xpack.infra.inventoryModel.container.displayName": "Dockerコンテナー",
Expand Down
1 change: 0 additions & 1 deletion x-pack/plugins/translations/translations/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -18755,7 +18755,6 @@
"xpack.infra.hostsViewPage.tabs.metricsCharts.tx": "网络出站数据 (TX)",
"xpack.infra.hostsViewPage.tooltip.whatAreTheseMetricsLink": "这些指标是什么?",
"xpack.infra.infra.nodeDetails.apmTabLabel": "APM",
"xpack.infra.infra.nodeDetails.createAlertLink": "创建库存规则",
"xpack.infra.infra.nodeDetails.openAsPage": "以页面形式打开",
"xpack.infra.inventory.alerting.groupActionVariableDescription": "报告数据的组名称",
"xpack.infra.inventoryModel.container.displayName": "Docker 容器",
Expand Down

0 comments on commit 8f214c3

Please sign in to comment.