From 1757b4dd9fc62808a2b9e38906b50c92fc2330cd Mon Sep 17 00:00:00 2001 From: Austin Hunt Date: Fri, 5 May 2017 19:22:09 -0400 Subject: [PATCH] Fixed documentation to match the actual implementation settings. Sorting objects use a desc prop not a asc prop. (#239) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6c89f7d..3435db7 100644 --- a/README.md +++ b/README.md @@ -650,10 +650,10 @@ Here are the props and their corresponding callbacks that control the state of t pageSize={20} // the number of rows per page to be displayed sorting={[{ id: 'lastName', - asc: true + desc: true }, { id: 'firstName', - asc: true + desc: true }]} // the sorting model for the table expandedRows={{ 1: true,