From b2bc2b536af7a98162efbcbcee6b518037f7629b Mon Sep 17 00:00:00 2001 From: chaksc Date: Thu, 13 Oct 2016 17:47:00 -0700 Subject: [PATCH] no message --- samples/react-todo-basic/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/react-todo-basic/README.md b/samples/react-todo-basic/README.md index b993279f0..f8b13e961 100644 --- a/samples/react-todo-basic/README.md +++ b/samples/react-todo-basic/README.md @@ -153,7 +153,7 @@ You can see this in action in the the [TodoContainer.tsx](./src/webparts/todo/co ### Loading SharePoint data in property pane One of the things you may want to do in your web part is the ability to configure the data source of your web part. For example, selecting a SharePoint list to bind to. Usually, this is presented in the web part property pane. However, this requires you fetch the available lists from the SharePoint site. -[TodoWebPart.ts] demonstrates an approach that will help you fetch data from SharePoint and populate a property pane field, in this case, a dropdown. This operation is performed in the `onInit` method where it calls the `_getTaskLists` method to query the data source and populate the corresponding property pane dropdown field property array: +[TodoWebPart.ts](/src/webparts/todo/TodoWebPart.ts) demonstrates an approach that will help you fetch data from SharePoint and populate a property pane field, in this case, a dropdown. This operation is performed in the `onInit` method where it calls the `_getTaskLists` method to query the data source and populate the corresponding property pane dropdown field property array: ```ts private _getTaskLists(): Promise {