diff --git a/x-pack/plugins/timelines/public/components/t_grid/body/index.tsx b/x-pack/plugins/timelines/public/components/t_grid/body/index.tsx index d21ea13290b6e..29766a5b8a1f5 100644 --- a/x-pack/plugins/timelines/public/components/t_grid/body/index.tsx +++ b/x-pack/plugins/timelines/public/components/t_grid/body/index.tsx @@ -151,6 +151,7 @@ const FIELDS_WITHOUT_CELL_ACTIONS = [ '@timestamp', 'signal.rule.risk_score', 'signal.reason', + 'kibana.alert.duration.us', 'kibana.alert.reason', ]; const hasCellActions = (columnId?: string) => diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json index ef248daf27c67..9e4249986c6a9 100644 --- a/x-pack/plugins/translations/translations/ja-JP.json +++ b/x-pack/plugins/translations/translations/ja-JP.json @@ -7156,8 +7156,6 @@ "xpack.observability.formatters.secondsTimeUnitLabel": "s", "xpack.observability.formatters.secondsTimeUnitLabelExtended": "秒", "xpack.observability.home.addData": "データの追加", - "xpack.observability.hoverActions.filterInValueButtonLabel": "Filter in", - "xpack.observability.hoverActions.filterOutValueButtonLabel": "Filter out", "xpack.observability.navigation.newBadge": "新規", "xpack.observability.news.readFullStory": "詳細なストーリーを読む", "xpack.observability.news.title": "新機能", diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json index 035c3a5010505..db6d19d7550a9 100644 --- a/x-pack/plugins/translations/translations/zh-CN.json +++ b/x-pack/plugins/translations/translations/zh-CN.json @@ -7214,8 +7214,6 @@ "xpack.observability.formatters.secondsTimeUnitLabel": "s", "xpack.observability.formatters.secondsTimeUnitLabelExtended": "秒", "xpack.observability.home.addData": "添加数据", - "xpack.observability.hoverActions.filterInValueButtonLabel": "Filter in", - "xpack.observability.hoverActions.filterOutValueButtonLabel": "Filter out", "xpack.observability.navigation.newBadge": "新建", "xpack.observability.news.readFullStory": "详细了解", "xpack.observability.news.title": "最新动态", diff --git a/x-pack/test/observability_functional/apps/observability/alerts/index.ts b/x-pack/test/observability_functional/apps/observability/alerts/index.ts index 31a7e4580f335..010a0b697582a 100644 --- a/x-pack/test/observability_functional/apps/observability/alerts/index.ts +++ b/x-pack/test/observability_functional/apps/observability/alerts/index.ts @@ -188,13 +188,15 @@ export default ({ getService }: FtrProviderContext) => { const alertStatusCell = cells[2]; await alertStatusCell.moveMouseTo(); await retry.waitFor('cell actions visible', async () => { + let buttonsExist = false; try { - await observability.alerts.common.filterForValueButtonExists(); - await observability.alerts.common.filterOutValueButtonExists(); + buttonsExist = await observability.alerts.common.filterForValueButtonExists(); + buttonsExist = + buttonsExist && (await observability.alerts.common.filterOutValueButtonExists()); } catch (_e) { return false; } - return true; + return buttonsExist; }); }); });