edit published content #32
Labels
No labels
area: devops
area: discovery
area: docs
area: livestream
consider soon
dependencies
documentation
Epic
good first issue
hacktoberfest
help wanted
icebox
level: 1
level: 2
level: 3
level: 4
needs: exploration
needs: grooming
needs: priority
needs: repro
needs: tech design
on hold
priority: blocker
priority: high
priority: low
priority: medium
resilience
Tom's Wishlist
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
type: testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbry-react-native#32
Loading…
Reference in a new issue
No description provided.
Delete branch "edit-publish"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
inspection only, would like to do a UI/UX review in person tomorrow
@ -233,2 +233,4 @@
};
onEditPressed = () => {
const { claim, navigation } = this.props;
would it make more sense to pass the claim id here rather than the whole object?
the publish component should be able to select the claim just from the id
i18n
what if license comes in with a value that is no longer present in the client? will this overwrite it? it looks like it would... if so, it probably shouldn't?
I need to finally add a module for supporting react native i8n and then update all the strings. I'll create the issue for the next sprint.
In this scenario, it would end up overwriting with the "Other..." license, which sort of fits.
@ -233,2 +233,4 @@
};
onEditPressed = () => {
const { claim, navigation } = this.props;
This seemed easier to do since we only need a snapshot of the claim object, and it's less lines off code. Either way works.