mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-25 10:40:16 +01:00
Fix inconsistence in declared VS used property
Summary: Found by D3601. Test Plan: Loaded revision. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D3603
This commit is contained in:
parent
52c68e1261
commit
92aaffd0c5
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,7 @@ final class AphrontSideNavView extends AphrontView {
|
|||
}
|
||||
|
||||
public function setFlexible($flexible) {
|
||||
$this->flexible = $flexible;
|
||||
$this->isFlexible = $flexible;
|
||||
return $this;
|
||||
}
|
||||
|
||||
|
@ -91,7 +91,7 @@ final class AphrontSideNavView extends AphrontView {
|
|||
),
|
||||
$apps->render());
|
||||
|
||||
if ($this->flexible) {
|
||||
if ($this->isFlexible) {
|
||||
$drag_id = celerity_generate_unique_node_id();
|
||||
$flex_bar = phutil_render_tag(
|
||||
'div',
|
||||
|
|
Loading…
Add table
Reference in a new issue