@@ -120,8 +120,8 @@ function appendOrRemoveChild(appObject: App, file: TFile, obsidianContainer: any
120120 const childBtn = makeButton ( appObject , "Child" , "childBtn" , `Create Child for current [${ file . basename } ] note` )
121121 setIcon ( childBtn , "baby" )
122122
123- const brotherBtn = makeButton ( appObject , "Brother " , "brotherBtn " , `Create Brother for current [${ file . basename } ] note` )
124- setIcon ( brotherBtn , "git-compare" )
123+ const siblingBtn = makeButton ( appObject , "Sibling " , "siblingBtn " , `Create Sibling for current [${ file . basename } ] note` )
124+ setIcon ( siblingBtn , "git-compare" )
125125
126126 const orphanBtn = makeButton ( appObject , "Orphan" , "orphanBtn" , `Create New Orphan note in [ORPHANS] folder` )
127127 setIcon ( orphanBtn , "disc" )
@@ -147,7 +147,7 @@ function appendOrRemoveChild(appObject: App, file: TFile, obsidianContainer: any
147147 // Append Buttons to buttonsLineContainer
148148 buttonsLineContainer ?. appendChild ( clusterBtn )
149149 buttonsLineContainer ?. appendChild ( childBtn )
150- buttonsLineContainer ?. appendChild ( brotherBtn )
150+ buttonsLineContainer ?. appendChild ( siblingBtn )
151151 buttonsLineContainer ?. appendChild ( orphanBtn )
152152 buttonsLineContainer ?. appendChild ( deleteBtn )
153153
@@ -167,7 +167,7 @@ function appendOrRemoveChild(appObject: App, file: TFile, obsidianContainer: any
167167 //@ts -ignore
168168 extraButtonsContainer . style . backgroundColor = Vars . buttonsLineContainerBG_orphans
169169 buttonsLineContainer ?. removeChild ( childBtn )
170- buttonsLineContainer ?. removeChild ( brotherBtn )
170+ buttonsLineContainer ?. removeChild ( siblingBtn )
171171 }
172172
173173 // Append the buttonsLineContainer after obsidianHeaderEl
@@ -192,9 +192,9 @@ function makeButton(appObject: App, type: string, className: string, tooltipMsg:
192192 createClustersAndOrphansFolder ( appObject ) ;
193193 new familyModal ( appObject , U . NewFileLocation . NewTab , "newChild" , undefined ) . open ( )
194194 }
195- else if ( type == "Brother " ) {
195+ else if ( type == "Sibling " ) {
196196 createClustersAndOrphansFolder ( appObject ) ;
197- new familyModal ( appObject , U . NewFileLocation . NewTab , "newBrother " , undefined ) . open ( ) ;
197+ new familyModal ( appObject , U . NewFileLocation . NewTab , "newSibling " , undefined ) . open ( ) ;
198198 }
199199 else if ( type == "Orphan" ) {
200200 createClustersAndOrphansFolder ( appObject ) ;
0 commit comments