From 8755c634adb0e1fc856b1908a4f28dc49c18941f Mon Sep 17 00:00:00 2001 From: zeppi Date: Fri, 26 Mar 2021 17:16:40 -0400 Subject: [PATCH] bugfix --- ui/component/fileActions/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/fileActions/view.jsx b/ui/component/fileActions/view.jsx index 59a33725e..91e07ccda 100644 --- a/ui/component/fileActions/view.jsx +++ b/ui/component/fileActions/view.jsx @@ -114,7 +114,7 @@ function FileActions(props: Props) { className="button--file-action" icon={ICONS.EDIT} label={__('Edit')} - navigate="/$/upload?type=livestream" + navigate={`/$/upload${isLivestreamClaim ? '?type=livestream' : ''}`} onClick={() => { prepareEdit(claim, editUri, fileInfo); }}