Skip to content

Commit

Permalink
removed export extension selection for full audio export
Browse files Browse the repository at this point in the history
  • Loading branch information
sijumoncy committed Dec 4, 2023
1 parent 1e902cc commit b3de99a
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions renderer/src/layouts/projects/Export/ExportProjectPopUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,16 +302,18 @@ export default function ExportProjectPopUp(props) {
<input id="visible_1" className="visible" type="checkbox" checked={checkText} onClick={() => setCheckText(!checkText)} />
<span className="ml-2 text-xs font-bold" title="You can have the text content along with the Audio">With Text (if available)</span>
</div>
<div className="max-w-[150px]">
<CustomMultiComboBox
selectedList={[selectedAudioExt]}
setSelectedList={setSelectedAudioExt}
customData={Object.values(audioExportFormats)}
filterParams="ext"
placeholder="Select Output type"
dropArrow
/>
</div>
{audioExport !== 'full' && (
<div className="max-w-[150px]">
<CustomMultiComboBox
selectedList={[selectedAudioExt]}
setSelectedList={setSelectedAudioExt}
customData={Object.values(audioExportFormats)}
filterParams="ext"
placeholder="Select Output type"
dropArrow
/>
</div>
)}
</div>
</div>
)}
Expand Down

0 comments on commit b3de99a

Please sign in to comment.