Skip to content

Commit

Permalink
[CI] Auto-commit changed files from 'node scripts/eslint --no-cache -…
Browse files Browse the repository at this point in the history
…-fix'
  • Loading branch information
kibanamachine committed Apr 4, 2022
1 parent cba2728 commit 9bb86af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const HeaderColumns: React.FC<Omit<HeaderProps, 'tabs'>> = memo(

HeaderColumns.displayName = 'HeaderColumns';

const HeaderComponent: React.FC<HeaderProps> = ({
const HeaderComponent: React.FC<HeaderProps> = ({
children,
leftColumn,
rightColumn,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export interface WithHeaderLayoutProps extends HeaderProps {
restrictHeaderWidth?: number;
'data-test-subj'?: string;
children?: React.ReactNode;
headerChildren?: React.ReactNode
headerChildren?: React.ReactNode;
}

export const WithHeaderLayout: React.FC<WithHeaderLayoutProps> = ({
Expand Down
6 changes: 5 additions & 1 deletion x-pack/plugins/osquery/public/packs/form/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@ interface PackFormProps {
isReadOnly?: boolean;
}

const PackFormComponent: React.FC<PackFormProps> = ({ defaultValue, editMode = false, isReadOnly = false }) => {
const PackFormComponent: React.FC<PackFormProps> = ({
defaultValue,
editMode = false,
isReadOnly = false,
}) => {
const [showConfirmationModal, setShowConfirmationModal] = useState(false);
const handleHideConfirmationModal = useCallback(() => setShowConfirmationModal(false), []);

Expand Down

0 comments on commit 9bb86af

Please sign in to comment.