Rc fixes #2082

Merged
neb-b merged 4 commits from rc-fixes into master 2018-10-31 20:03:39 +01:00
neb-b commented 2018-10-31 18:39:07 +01:00 (Migrated from github.com)

More fixes for the RC
https://github.com/lbryio/lbry-desktop/issues/2073

  • Added subscription icons to the home page
  • Fixed channel subscribe failing on the channel page
  • Fixed channel creation failing by changing the bid amount to a string
  • Fixed dark mode markdown editor
More fixes for the RC https://github.com/lbryio/lbry-desktop/issues/2073 - Added subscription icons to the home page - Fixed channel subscribe failing on the channel page - Fixed channel creation failing by changing the bid amount to a string - Fixed dark mode markdown editor
neb-b (Migrated from github.com) reviewed 2018-10-31 18:40:10 +01:00
@ -45,2 +45,3 @@
"jsx-a11y/click-events-have-key-events": 0
"jsx-a11y/click-events-have-key-events": 0,
"consistent-return": 0
}
neb-b (Migrated from github.com) commented 2018-10-31 18:40:10 +01:00

This has always caused issues, mainly in react components where you might not want to return anything:
ex:

someMethod() {
  if (!props.value) return;
  
  doStuff()
}
This has always caused issues, mainly in react components where you might not want to return anything: ex: ``` someMethod() { if (!props.value) return; doStuff() } ```
skhameneh (Migrated from github.com) approved these changes 2018-10-31 19:51:12 +01:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: LBRYCommunity/lbry-desktop#2082
No description provided.