diff --git a/src/pages/Stream/Views/Manage/Settings.tsx b/src/pages/Stream/Views/Manage/Settings.tsx index 8063afd8..e7fa7b01 100644 --- a/src/pages/Stream/Views/Manage/Settings.tsx +++ b/src/pages/Stream/Views/Manage/Settings.tsx @@ -241,17 +241,12 @@ const HotTierConfig = (props: { /> - - - Oldest Record: - - {_.isEmpty(oldestEntry) ? 'No Entries Stored' : formatDateWithTimezone(oldestEntry)} - - + - + {streamType === 'UserDefined' ? ( {humanizedUsedSize} used | {humanizedAvailableSize} available @@ -274,7 +269,7 @@ const HotTierConfig = (props: { @@ -301,12 +296,9 @@ const HotTierConfig = (props: { {!hotTierNotSet && streamType === 'UserDefined' ? ( + style={{ alignItems: 'flex-start', paddingTop: '0.8rem', ...(hotTierNotSet ? { display: 'none' } : {}) }}> - @@ -321,6 +313,15 @@ const HotTierConfig = (props: { + + + Oldest Record: + + {_.isEmpty(oldestEntry) ? 'No Entries Stored' : formatDateWithTimezone(oldestEntry)} + + );