Skip to content

Commit 162e625

Browse files
committed
fix linting
1 parent 0ff152f commit 162e625

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

packages/module/patternfly-docs/content/extensions/data-view/examples/Table/DataViewTableEmptyExample.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const repositories: Repository[] = [];
1919
// you can also pass props to Tr by returning { row: DataViewTd[], props: TrProps } }
2020
const rows: DataViewTr[] = repositories.map((repository) => Object.values(repository));
2121

22-
const columns: DataViewTh[] = ['Repositories', 'Branches', 'Pull requests', 'Workspaces', 'Last commit'];
22+
const columns: DataViewTh[] = [ 'Repositories', 'Branches', 'Pull requests', 'Workspaces', 'Last commit' ];
2323

2424
const ouiaId = 'TableExample';
2525

packages/module/patternfly-docs/content/extensions/data-view/examples/Table/DataViewTableLoadingExample.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { SkeletonTableBody, SkeletonTableHead } from '@patternfly/react-componen
66
// you can also pass props to Tr by returning { row: DataViewTd[], props: TrProps } }
77
const rows: DataViewTr[] = [];
88

9-
const columns: DataViewTh[] = ['Repositories', 'Branches', 'Pull requests', 'Workspaces', 'Last commit'];
9+
const columns: DataViewTh[] = [ 'Repositories', 'Branches', 'Pull requests', 'Workspaces', 'Last commit' ];
1010

1111
const ouiaId = 'TableExample';
1212

packages/module/patternfly-docs/pages/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
12
import React from 'react';
23
import { Title, PageSection } from '@patternfly/react-core';
34

0 commit comments

Comments
 (0)