Don't show upload and delete button when no complete segments

This commit is contained in:
Ajay Ramachandran
2021-05-21 17:00:42 -04:00
parent bcfe4924e2
commit 25236f3a19

View File

@@ -1143,10 +1143,10 @@ function updateEditButtonsOnPlayer(): void {
creatingSegment = isSegmentCreationInProgress(); creatingSegment = isSegmentCreationInProgress();
// Show only if there are any segments to submit // Show only if there are any segments to submit
submitButtonVisible = sponsorTimesSubmitting.length > 0; submitButtonVisible = sponsorTimesSubmitting.length > 1 || (sponsorTimesSubmitting.length > 0 && !creatingSegment);
// Show only if there are any segments to delete // Show only if there are any segments to delete
deleteButtonVisible = sponsorTimesSubmitting.length > 0; deleteButtonVisible = sponsorTimesSubmitting.length > 1 || (sponsorTimesSubmitting.length > 0 && !creatingSegment);
} }
// Update the elements // Update the elements