summaryrefslogtreecommitdiff
path: root/animism-align/frontend/app/views/viewer/checklist/credits.components.js
diff options
context:
space:
mode:
Diffstat (limited to 'animism-align/frontend/app/views/viewer/checklist/credits.components.js')
-rw-r--r--animism-align/frontend/app/views/viewer/checklist/credits.components.js36
1 files changed, 17 insertions, 19 deletions
diff --git a/animism-align/frontend/app/views/viewer/checklist/credits.components.js b/animism-align/frontend/app/views/viewer/checklist/credits.components.js
index 91855ef..d466c5d 100644
--- a/animism-align/frontend/app/views/viewer/checklist/credits.components.js
+++ b/animism-align/frontend/app/views/viewer/checklist/credits.components.js
@@ -65,26 +65,24 @@ const CreditsVenue = ({ venue, open, setOpen }) => {
</div>
<Arrow type={isOpen ? 'up' : 'down'} />
</div>
- {isOpen && (
- <div className='venue-info'>
- <ArtistColumns artists={venue.settings.artists} />
- {creditSections.map(section => (
- <div key={section.i}>
- <div className='credits-title'>
- {section.title}
- </div>
- <div className='credits-info-wide'>
- {section.lines.map((line, j) => (
- <div
- key={j}
- dangerouslySetInnerHTML={{ __html: line || " " }}
- />
- ))}
- </div>
+ <div className='venue-info'>
+ <ArtistColumns artists={venue.settings.artists} />
+ {creditSections.map(section => (
+ <div key={section.i}>
+ <div className='credits-title'>
+ {section.title}
</div>
- ))}
- </div>
- )}
+ <div className='credits-info-wide'>
+ {section.lines.map((line, j) => (
+ <div
+ key={j}
+ dangerouslySetInnerHTML={{ __html: line || " " }}
+ />
+ ))}
+ </div>
+ </div>
+ ))}
+ </div>
</div>
)
}