mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-15 07:18:35 -05:00
Fix translation for instance list
Fix translation for instance list. Issue was just visible on production build. See:https://github.com/ansible/awx/issues/11150
This commit is contained in:
+316
-249
File diff suppressed because it is too large
Load Diff
+317
-250
File diff suppressed because it is too large
Load Diff
+529
-414
File diff suppressed because it is too large
Load Diff
+511
-405
File diff suppressed because it is too large
Load Diff
+317
-250
File diff suppressed because it is too large
Load Diff
+515
-407
File diff suppressed because it is too large
Load Diff
+315
-248
File diff suppressed because it is too large
Load Diff
@@ -134,9 +134,13 @@ function InstanceListItem({
|
||||
</Td>
|
||||
<Td dataLabel={t`Status`}>
|
||||
<Tooltip
|
||||
content={t`Last Health Check ${formatDateString(
|
||||
instance.last_health_check
|
||||
)}`}
|
||||
content={
|
||||
<div>
|
||||
{t`Last Health Check`}
|
||||
|
||||
{formatDateString(instance.last_health_check)}
|
||||
</div>
|
||||
}
|
||||
>
|
||||
<StatusLabel status={instance.errors ? 'error' : 'healthy'} />
|
||||
</Tooltip>
|
||||
|
||||
Reference in New Issue
Block a user