Skip to content

Commit

Permalink
ref elan-ev#569 FIX compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Pfahl committed Apr 16, 2020
1 parent e432479 commit b974193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/studio/save-creation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,10 +295,10 @@ const UploadForm = ({ opencast, uploadState, recordings, handleUpload }) => {
let tmp = {value:keys,label:series.get(keys)};
titles.push(tmp);
}


const enabledSeries = useSettings().upload?.enableSeries;
const displaySeries = enabledSeries == 'true' ? 'block' : 'none';
const displaySeries = enabledSeries === 'true' ? 'block' : 'none';


function handleInputChange(event) {
Expand Down

0 comments on commit b974193

Please sign in to comment.