fix: publish bid help text

This commit is contained in:
Sean Yesmunt 2019-07-02 00:49:21 -04:00
parent 9ca18433ff
commit 63364b664c
3 changed files with 8 additions and 6 deletions

View file

@ -106,8 +106,10 @@ function PublishForm(props: Props) {
if (channelName) { if (channelName) {
// resolve without the channel name so we know the winning bid for it // resolve without the channel name so we know the winning bid for it
try {
const uriLessChannel = buildURI({ contentName: name }); const uriLessChannel = buildURI({ contentName: name });
resolveUri(uriLessChannel); resolveUri(uriLessChannel);
} catch (e) {}
} }
if (uri) { if (uri) {

View file

@ -20,7 +20,7 @@ type Props = {
updatePublishForm: ({}) => void, updatePublishForm: ({}) => void,
}; };
function PublishText(props: Props) { function PublishName(props: Props) {
const { const {
name, name,
channel, channel,
@ -120,4 +120,4 @@ function PublishText(props: Props) {
); );
} }
export default PublishText; export default PublishName;

View file

@ -97,14 +97,14 @@ export const selectTakeOverAmount = createSelector(
const claimForShortUri = claimsByUri[shortUri]; const claimForShortUri = claimsByUri[shortUri];
if (!myClaimForUri && claimForShortUri) { if (!myClaimForUri && claimForShortUri) {
return claimForShortUri.effective_amount; return claimForShortUri.meta.effective_amount;
} else if (myClaimForUri && claimForShortUri) { } else if (myClaimForUri && claimForShortUri) {
// https://github.com/lbryio/lbry/issues/1476 // https://github.com/lbryio/lbry/issues/1476
// We should check the current effective_amount on my claim to see how much additional lbc // We should check the current effective_amount on my claim to see how much additional lbc
// is needed to win the claim. Currently this is not possible during a takeover. // is needed to win the claim. Currently this is not possible during a takeover.
// With this, we could say something like, "You have x lbc in support, if you bid y additional LBC you will control the claim" // With this, we could say something like, "You have x lbc in support, if you bid y additional LBC you will control the claim"
// For now just ignore supports. We will just show the winning claim's bid amount // For now just ignore supports. We will just show the winning claim's bid amount
return claimForShortUri.effective_amount || claimForShortUri.amount; return claimForShortUri.meta.effective_amount || claimForShortUri.amount;
} }
return null; return null;