diff options
Diffstat (limited to 'server/sonar-web/src/main/js/apps/project-admin/links/Table.js')
-rw-r--r-- | server/sonar-web/src/main/js/apps/project-admin/links/Table.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/apps/project-admin/links/Table.js b/server/sonar-web/src/main/js/apps/project-admin/links/Table.js index a7358dbb26b..acc5cf5ec96 100644 --- a/server/sonar-web/src/main/js/apps/project-admin/links/Table.js +++ b/server/sonar-web/src/main/js/apps/project-admin/links/Table.js @@ -18,14 +18,15 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import React from 'react'; +import PropTypes from 'prop-types'; import LinkRow from './LinkRow'; import { orderLinks } from './utils'; import { translate } from '../../../helpers/l10n'; export default class Table extends React.PureComponent { static propTypes = { - links: React.PropTypes.array.isRequired, - onDelete: React.PropTypes.func.isRequired + links: PropTypes.array.isRequired, + onDelete: PropTypes.func.isRequired }; handleDeleteLink(link) { |