mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-13 17:52:22 +00:00
Merge pull request #3191 from denis-sokolov/footer-proper-debug-condition
fix(footer): correct logic to show debug panel
This commit is contained in:
commit
7a806097b9
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ footer.footer(ng-controller='FooterCtrl')
|
|||
tr
|
||||
td
|
||||
a.addthis_button_google_plusone(g:plusone:size='medium')
|
||||
else if(env.NODE_ENV != 'production' && !env.isStaticPage)
|
||||
else if(env.NODE_ENV === 'development' && !env.isStaticPage)
|
||||
h4 Debug
|
||||
.btn-group-vertical
|
||||
a.btn.btn-default(ng-click='addMissedDay()') +1 Missed Day
|
||||
|
|
|
|||
Loading…
Reference in a new issue