Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -92,6 +92,7 @@ function getColumns(
name: 'time',
dataType: 'date',
render: (date) => renderTime(date, interval),
textOnly: true,
sortable: true
},
{
Expand All @@ -113,6 +114,7 @@ function getColumns(
numberOfRules={item.rulesLength}
/>
),
textOnly: true,
sortable: true
}
];
Expand All @@ -128,6 +130,7 @@ function getColumns(
filter={filter}
/>
),
textOnly: true,
sortable: true
});
}
Expand All @@ -142,6 +145,7 @@ function getColumns(
influencers={influencers}
/>
),
textOnly: true,
sortable: true
});
}
Expand Down Expand Up @@ -188,6 +192,7 @@ function getColumns(
typical={item.typical}
/>
),
textOnly: true,
sortable: true
});
}
Expand Down Expand Up @@ -240,7 +245,8 @@ function getColumns(
)}
</EuiText>
);
}
},
textOnly: true,
});
}

Expand Down Expand Up @@ -390,7 +396,7 @@ class AnomaliesTable extends Component {
unsetShowFunction={this.unsetShowRuleEditorFlyoutFunction}
/>
<EuiInMemoryTable
className="ml-anomalies-table eui-textBreakWord"
className="ml-anomalies-table eui-textOverflowWrap"
items={tableData.anomalies}
columns={columns}
pagination={{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ class ForecastsTableUI extends Component {
}),
dataType: 'date',
render: (date) => formatDate(date, TIME_FORMAT),
textOnly: true,
sortable: true
},
{
Expand All @@ -201,6 +202,7 @@ class ForecastsTableUI extends Component {
}),
dataType: 'date',
render: (date) => formatDate(date, TIME_FORMAT),
textOnly: true,
sortable: true
},
{
Expand All @@ -211,6 +213,7 @@ class ForecastsTableUI extends Component {
}),
dataType: 'date',
render: (date) => formatDate(date, TIME_FORMAT),
textOnly: true,
sortable: true
},
{
Expand Down Expand Up @@ -250,6 +253,7 @@ class ForecastsTableUI extends Component {
defaultMessage: 'Expires'
}),
render: (date) => formatDate(date, TIME_FORMAT),
textOnly: true,
sortable: true
},
{
Expand All @@ -267,7 +271,8 @@ class ForecastsTableUI extends Component {
})}
</div>
);
}
},
textOnly: true,
},
{
name: intl.formatMessage({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ class JobsListUI extends Component {
field: 'description',
render: (description, item) => (
<JobDescription job={item} />
)
),
textOnly: true,
}, {
field: 'processed_record_count',
name: intl.formatMessage({
Expand Down