sforkowany z mirror/soapbox
LatestAccountsPanel: fix expand count
rodzic
12939e3354
commit
4ca3d68bf6
|
@ -51,6 +51,8 @@ class LatestAccountsPanel extends ImmutablePureComponent {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const expandCount = total - accountIds.size;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<AccountListPanel
|
<AccountListPanel
|
||||||
icon='users'
|
icon='users'
|
||||||
|
@ -58,7 +60,7 @@ class LatestAccountsPanel extends ImmutablePureComponent {
|
||||||
accountIds={accountIds}
|
accountIds={accountIds}
|
||||||
limit={limit}
|
limit={limit}
|
||||||
total={total}
|
total={total}
|
||||||
expandMessage={intl.formatMessage(messages.expand, { count: total })}
|
expandMessage={intl.formatMessage(messages.expand, { count: expandCount })}
|
||||||
expandRoute='/admin/users'
|
expandRoute='/admin/users'
|
||||||
withDate
|
withDate
|
||||||
withRelationship={false}
|
withRelationship={false}
|
||||||
|
|
Ładowanie…
Reference in New Issue