From c5b7cc5ac474d5b441ed910af1b5057dc0763619 Mon Sep 17 00:00:00 2001 From: zeppi Date: Mon, 2 May 2022 16:14:21 -0400 Subject: [PATCH] fix bid reset --- static/app-strings.json | 1 + ui/redux/reducers/publish.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/static/app-strings.json b/static/app-strings.json index a35b219a6..c9f577638 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -2317,5 +2317,6 @@ "Display view progress on thumbnail. This setting will not hide any blockchain activity or downloads.": "Display view progress on thumbnail. This setting will not hide any blockchain activity or downloads.", "%anonymous%": "%anonymous%", "Anon --[used in <%anonymous% Reposted>]--": "Anon", + "This will be visible in a few minutes after you submit this form.": "This will be visible in a few minutes after you submit this form.", "--end--": "--end--" } diff --git a/ui/redux/reducers/publish.js b/ui/redux/reducers/publish.js index 4b0b27149..f871048a6 100644 --- a/ui/redux/reducers/publish.js +++ b/ui/redux/reducers/publish.js @@ -93,7 +93,7 @@ export const publishReducer = handleActions( ...defaultState, uri: undefined, channel: state.channel, - bid: state.bid, + bid: state.bid || 0.01, optimize: state.optimize, language: state.language, }),