1
0
Fork 0
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:
Chad Little 2014-01-08 21:27:06 -08:00
parent a5db959ff7
commit 982e0d78ae

View file

@ -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.'));