We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54fa2b0 commit af38148Copy full SHA for af38148
components/organization/organization.jsx
@@ -1,6 +1,7 @@
1
import React from 'react';
2
import Container from '../container/container';
3
import Contributors from '../contributors/contributors';
4
+import Link from '../link/link';
5
import Items from './projects.json';
6
import './organization-style';
7
@@ -55,7 +56,15 @@ export default props => {
55
56
<Shield content={ `github/issues-pr-raw/${org.repo}` } label="prs" />
57
58
<h6>Maintainers</h6>
- <Contributors contributors={[ org.maintainer ]} />
59
+ {
60
+ (() => {
61
+ if (org.maintainer) {
62
+ return <Contributors contributors={[ org.maintainer ]} />;
63
+
64
+ } else return <Link to="https://github.com/webpack/webpack/issues/2734">Maintainer needed...</Link>;
65
+ })()
66
+ }
67
68
</div>
69
))
70
}
0 commit comments