mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-20 20:40:56 +01:00
Fix Cards list in External Accounts
Summary: Minor, sets the list to flush to invoke the correct CSS for the ObjectBox. Test Plan: Reload Page Reviewers: epriestley, btrahan Reviewed By: btrahan CC: Korvin, epriestley, aran Differential Revision: https://secure.phabricator.com/D7909
This commit is contained in:
parent
a5db959ff7
commit
982e0d78ae
1 changed files with 2 additions and 0 deletions
|
@ -36,6 +36,7 @@ final class PhabricatorSettingsPanelExternalAccounts
|
|||
$linked = id(new PHUIObjectItemListView())
|
||||
->setUser($viewer)
|
||||
->setCards(true)
|
||||
->setFlush(true)
|
||||
->setNoDataString(pht('You have no linked accounts.'));
|
||||
|
||||
$login_accounts = 0;
|
||||
|
@ -99,6 +100,7 @@ final class PhabricatorSettingsPanelExternalAccounts
|
|||
$linkable = id(new PHUIObjectItemListView())
|
||||
->setUser($viewer)
|
||||
->setCards(true)
|
||||
->setFlush(true)
|
||||
->setNoDataString(
|
||||
pht('Your account is linked with all available providers.'));
|
||||
|
||||
|
|
Loading…
Reference in a new issue