Skip to content

Commit

Permalink
Merge pull request #19576 from JoVictorNunes/issue-19518
Browse files Browse the repository at this point in the history
fix(presentation): disable menu for not uploaded files
  • Loading branch information
ramonlsouza committed Feb 6, 2024
2 parents c9cf67e + e119d9d commit 8fb34a7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -841,9 +841,9 @@ class PresentationUploader extends Component {
const isExporting = item?.exportToChatStatus === 'RUNNING';

const shouldDisableExportButton = (isExporting
|| item.uploadInProgress
|| !item.uploadCompleted
|| hasError
|| disableActions) && item.uploadInProgress;
|| disableActions);

const formattedDownloadLabel = isExporting
? intl.formatMessage(intlMessages.exporting)
Expand Down

0 comments on commit 8fb34a7

Please sign in to comment.