Skip to content

Commit 8b90ec1

Browse files
committed
fix examples columns
1 parent fc68056 commit 8b90ec1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/get-started/src/data.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

22
export const columns = [
3-
{header: 'Code', field: 'CustomerID', width: 80, background: '#def', fixed: true},
3+
{header: 'Code', field: 'CustomerID', width: 80, style: 'background:#def', fixed: true},
44
{header: 'Company Name', field: 'CompanyName', width: 160, fixed: true},
55
{header: 'Contact', field: 'ContactName', width: 120},
6-
{header: 'Title', field: 'ContactTitle', width: 120, background: '#fed'},
6+
{header: 'Title', field: 'ContactTitle', width: 120, style: 'background:#fed'},
77
{header: 'Address', field: 'Address', width: 120},
88
{header: 'City', field: 'City'},
99
{header: 'Zip', field: 'PostalCode', align: 'right'},
1010
{header: 'Phone', field: 'Phone'},
1111
{header: 'Fax', field: 'Fax'},
12-
{header: 'Country', field: 'Country', background: '#efe', fixed: true}
12+
{header: 'Country', field: 'Country', style: 'background:#efe', fixed: true}
1313
];
1414

1515
export const rows = [

0 commit comments

Comments
 (0)