From c00650861fa906daef2df806be4dae1f07e6bbcb Mon Sep 17 00:00:00 2001 From: Yogesh Verma Date: Tue, 28 Apr 2026 02:08:45 -0700 Subject: [PATCH] Fix incorrect link to storage module (#6753) The components module contains an incorrect link to the storage module (storage instead of Storage). --- docs/modules/Components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/Components.md b/docs/modules/Components.md index 7e1787b2d..fa2329985 100644 --- a/docs/modules/Components.md +++ b/docs/modules/Components.md @@ -148,7 +148,7 @@ JSON.stringify(component); ``` ::: tip -For storing/loading all the components you should rely on the [Storage Manager](/modules/storage.html) +For storing/loading all the components you should rely on the [Storage Manager](/modules/Storage.html) ::: So, the **Component instance** is responsible for the **final data** (eg. HTML, JSON) of your templates. If you need, for example, to update/add some attribute in the HTML you need to update its component (eg. `component.addAttributes({ title: 'Title added' })`), so the Component/Model is your **Source of Truth**.