Bug 1642933 - Extend X axis to current UTC time

This commit is contained in:
alexandru-io 2020-06-23 08:57:40 +03:00 коммит произвёл GitHub
Родитель 48667c34c7
Коммит 2db10f02b2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -297,6 +297,8 @@ class GraphsContainer extends React.Component {
bottom: 50,
};
const today = moment.utc().toDate();
return (
<span data-testid="graphContainer">
{!showTable && (
@ -310,6 +312,7 @@ class GraphsContainer extends React.Component {
style={{ parent: { maxHeight: '150px', maxWidth: '1350px' } }}
scale={{ x: 'time', y: 'linear' }}
domainPadding={{ y: 30 }}
maxDomain={{ x: today }}
containerComponent={
<VictoryBrushContainer
brushDomain={zoom}
@ -353,6 +356,7 @@ class GraphsContainer extends React.Component {
style={{ parent: { maxHeight: '400px', maxWidth: '1350px' } }}
scale={{ x: 'time', y: 'linear' }}
domainPadding={{ y: 40, x: [10, 10] }}
maxDomain={{ x: today }}
externalEventMutations={externalMutation}
containerComponent={
<VictoryZoomSelectionContainer