Skip to content

Commit 6f6bd29

Browse files
committed
component.Abstract: parentId default value #7112
1 parent 0ed3055 commit 6f6bd29

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/component/Abstract.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ class Abstract extends Base {
8787
*/
8888
parentComponent_: null,
8989
/**
90-
* @member {String|null} parentId_=null
91-
* @protected
90+
* The parent component id or document.body
91+
* @member {String} parentId_='document.body'
9292
* @reactive
9393
*/
94-
parentId_: null,
94+
parentId_: 'document.body',
9595
/**
9696
* Optionally add a state.Provider to share state data with child components
9797
* @member {Object|null} stateProvider_=null

0 commit comments

Comments
 (0)