Skip to content

Commit 17d13d8

Browse files
committed
Fix lint
1 parent 0dcd688 commit 17d13d8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

packages/carbon-component-mapper/src/select/select.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,8 @@ ClearedSelectSearchable.propTypes = {
250250
isRequired: PropTypes.bool,
251251
isSearchable: PropTypes.bool,
252252
isClearable: PropTypes.bool,
253-
labelText: PropTypes.string
253+
labelText: PropTypes.string,
254+
value: PropTypes.any
254255
};
255256

256257
const Select = (props) => {

packages/pf4-component-mapper/src/select/select/menu.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable react/prop-types */
12
import React, { useEffect, useState, useRef } from 'react';
23
import { createPortal } from 'react-dom';
34
import Option from './option';

packages/pf4-component-mapper/src/tests/wizard/wizard.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -983,8 +983,7 @@ describe('<Wizard />', () => {
983983
});
984984
wrapper.update();
985985

986-
console.log(wrapper
987-
.find('.pf-c-wizard__nav-item').debug());
986+
console.log(wrapper.find('.pf-c-wizard__nav-item').debug());
988987

989988
expect(
990989
wrapper

0 commit comments

Comments
 (0)