From 71766bbd15cde14bec3c7b732e1c68b286db4717 Mon Sep 17 00:00:00 2001 From: Ashwin Prakash Nalwade <53330017+ashwinpn@users.noreply.github.com> Date: Mon, 24 Feb 2020 23:06:31 -0500 Subject: [PATCH 1/2] Added words to make the sentence valid. *....the prop values will not be stored with components * without an ID --- dash-renderer/src/persistence.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dash-renderer/src/persistence.js b/dash-renderer/src/persistence.js index 39bd011854..3dee8cafae 100644 --- a/dash-renderer/src/persistence.js +++ b/dash-renderer/src/persistence.js @@ -3,8 +3,9 @@ * * When users input new prop values, they can be stored and reapplied later, * when the component is recreated (changing `Tab` for example) or when the - * page is reloaded (depending on `persistence_type`) Storage is tied to - * component ID and will not on with components without an ID. + * page is reloaded (depending on `persistence_type`). Storage is tied to + * component ID, and the prop values will not be stored with components + * without an ID. * * Renderer handles the mechanics, but components must define a few props: * From 8717c1edde98cb57698c0bb891b20ccf6d036c9a Mon Sep 17 00:00:00 2001 From: alexcjohnson Date: Thu, 27 Feb 2020 14:23:19 -0500 Subject: [PATCH 2/2] Update dash-renderer/src/persistence.js --- dash-renderer/src/persistence.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dash-renderer/src/persistence.js b/dash-renderer/src/persistence.js index 3dee8cafae..5d8059214f 100644 --- a/dash-renderer/src/persistence.js +++ b/dash-renderer/src/persistence.js @@ -4,7 +4,7 @@ * When users input new prop values, they can be stored and reapplied later, * when the component is recreated (changing `Tab` for example) or when the * page is reloaded (depending on `persistence_type`). Storage is tied to - * component ID, and the prop values will not be stored with components + * component ID, and the prop values will not be stored with components * without an ID. * * Renderer handles the mechanics, but components must define a few props: