File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
force-app/examples/default/aura/NewTodoItem Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ middleware: You can include redux middleware like redux-thunk here. Lightning-Re
3030## Installation
3131Lightning-Redux Unmanaged Packaged (Redux Component, redux and redux-thunk static resource): https://login.salesforce.com/packaging/installPackage.apexp?p0=04t50000000M7PT
3232
33- Lightning-Redux-Examples (Counter and Todo Examples unmanaged package): https://login.salesforce.com/packaging/installPackage.apexp?p0=04t50000000M7Pi
33+ Lightning-Redux-Examples (Counter and Todo Examples unmanaged package): https://login.salesforce.com/packaging/installPackage.apexp?p0=04t50000000M7Pn
3434
3535Otherwise, you can use the SFDX CLI to convert the source and do a metadata deploy.
3636
Original file line number Diff line number Diff line change 9191 var status = component . get ( "v.completed" ) ;
9292 var currentTodo = component . get ( "v.todo" ) ;
9393 state . todos . map ( function ( todo ) {
94- if ( currentTodo . Id === todo . Id ) {
94+ if ( currentTodo && currentTodo . Id && currentTodo . Id === todo . Id ) {
9595 status = todo . Completed__c ;
9696 }
9797 } ) ;
You can’t perform that action at this time.
0 commit comments