mirror of
https://github.com/mue/mue.git
synced 2026-07-22 08:17:28 +02:00
feat: working feedback modal, fix photographers list on about page
This commit is contained in:
@@ -11,7 +11,7 @@ export default class Text extends React.PureComponent {
|
||||
this.language = window.language.modals.main.settings;
|
||||
}
|
||||
|
||||
handleChange(e) {
|
||||
handleChange = (e) => {
|
||||
const { value } = e.target;
|
||||
|
||||
// Alex wanted font to work with montserrat and Montserrat, so I made it work
|
||||
|
||||
@@ -45,7 +45,7 @@ export default class About extends React.PureComponent {
|
||||
sponsors: sponsors,
|
||||
update: updateMsg,
|
||||
other_contributors: other_contributors,
|
||||
photographers: photographers.sort(),
|
||||
photographers: photographers.sort().join(', '),
|
||||
loading: null
|
||||
});
|
||||
}
|
||||
@@ -94,11 +94,7 @@ export default class About extends React.PureComponent {
|
||||
)}
|
||||
<h3>{this.language.photographers}</h3>
|
||||
{this.state.loading}
|
||||
<p>
|
||||
{this.state.photographers.map((item) =>
|
||||
<>{item}, </>
|
||||
)}
|
||||
</p>
|
||||
<p>{this.state.photographers}</p>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user