Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
a03d7df
move duplicate smv code to single location
alvarezmelissa87 Apr 14, 2026
b7b1c49
Changes from node scripts/lint.js --fix
kibanamachine Apr 14, 2026
b9cb7e9
simplify componentDidUpdate loading conditions
alvarezmelissa87 Apr 14, 2026
85fbaa8
Merge branch 'ml-smv-refactor' of github.com:alvarezmelissa87/kibana …
alvarezmelissa87 Apr 14, 2026
686e362
update types
alvarezmelissa87 Apr 14, 2026
bc6e3e2
Changes from node scripts/eslint_all_files --no-cache --fix
kibanamachine Apr 14, 2026
fce19d3
add comments and abort on unmount
alvarezmelissa87 Apr 14, 2026
05ae8d6
only show entity and filter in embeddable
alvarezmelissa87 Apr 14, 2026
1829f02
Merge branch 'main' into ml-smv-refactor
alvarezmelissa87 Apr 17, 2026
53345b8
Merge branch 'main' into ml-smv-refactor
alvarezmelissa87 Apr 20, 2026
a8d2c53
move tableFilter code to shared utility function
alvarezmelissa87 Apr 20, 2026
ad10362
update types
alvarezmelissa87 Apr 21, 2026
f66d083
Merge branch 'main' into ml-smv-refactor
elasticmachine Apr 22, 2026
81efd6f
Merge branch 'main' into ml-smv-refactor
elasticmachine Apr 27, 2026
97afce5
fix type error in focus range test file
alvarezmelissa87 Apr 27, 2026
f87be35
Merge branch 'ml-smv-refactor' of github.com:alvarezmelissa87/kibana …
alvarezmelissa87 Apr 27, 2026
66a922a
Undo annotation table column width change.
alvarezmelissa87 Apr 27, 2026
790850e
Merge branch 'main' into ml-smv-refactor
elasticmachine Apr 28, 2026
055d981
fix broken imports
alvarezmelissa87 Apr 29, 2026
232883a
Merge branch 'main' into ml-smv-refactor
elasticmachine May 1, 2026
3117ce0
Merge branch 'main' into ml-smv-refactor
elasticmachine May 4, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ class AnnotationsTableUI extends Component {
defaultMessage: 'Annotation',
}),
sortable: true,
width: '40%',
width: '300px',
Comment thread
peteharverson marked this conversation as resolved.
Outdated
scope: 'row',
'data-test-subj': `mlAnnotationsColumnAnnotation`,
},
Expand Down Expand Up @@ -461,7 +461,7 @@ class AnnotationsTableUI extends Component {
defaultMessage: 'Event',
}),
sortable: true,
width: '10%',
width: '80px',
'data-test-subj': `mlAnnotationsColumnEvent`,
},
];
Expand Down Expand Up @@ -621,7 +621,7 @@ class AnnotationsTableUI extends Component {
name: i18n.translate('xpack.ml.annotationsTable.detectorColumnName', {
defaultMessage: 'Detector',
}),
width: '10%',
width: '100px',
render: (item) => {
if ('detector_index' in item) {
return this.props.detectors[item.detector_index].detector_description;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2033,6 +2033,12 @@ class TimeseriesChartIntl extends Component {
closePopover={() => this.closePopover()}
panelPaddingSize="none"
anchorPosition="upLeft"
aria-label={i18n.translate(
'xpack.ml.timeSeriesExplorer.timeSeriesChart.anomalyActionsPopoverAriaLabel',
{
defaultMessage: 'Anomaly actions',
}
)}
>
<LinksMenuUI
anomaly={this.state.popoverData}
Expand Down
Loading
Loading