Skip to content

Commit

Permalink
ui bug bash fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jedan2506 committed Jul 19, 2023
1 parent 49fc287 commit cc55778
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gui/pages/Dashboard/Settings/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,10 @@ export default function Settings({organisationId}) {
<div>
{sourceDropdown && <div className="custom_select_options" ref={sourceRef} style={{width: '100%'}}>
{sources.map((source, index) => (
<div key={index} className="custom_select_option" onClick={() => handleSourceSelect(index)}
style={{padding: '12px 14px', maxWidth: '100%'}}>
{source}
</div>))}
<div key={index} className="custom_select_option" onClick={() => handleSourceSelect(index)}
style={{padding: '12px 14px', maxWidth: '100%'}}>
{source}
</div>))}
</div>}
</div>
</div>
Expand Down

0 comments on commit cc55778

Please sign in to comment.