@@ -546,7 +546,8 @@ class GitLabTree
546546 * div's ancestors. Finally, it places the wrapped DIV into the DOM directly under
547547 * the 'content-wrapper' div.
548548 */
549- moveTabs ( tabs : HTMLElement , contentWrapper : HTMLElement ) : void {
549+ moveTabs ( tabs : HTMLElement , contentWrapper : HTMLElement ) : void
550+ {
550551 tabs . parentElement . removeChild ( tabs ) ;
551552
552553 const tabsWrapper = document . createElement ( 'div' ) ;
@@ -569,7 +570,8 @@ class GitLabTree
569570 * 'Changes' tab. Finally, it places the results back into the DOM directly under
570571 * the 'content-wrapper' div.
571572 */
572- moveTabsContent ( tabsContent : HTMLElement , contentWrapper : HTMLElement ) : void {
573+ moveTabsContent ( tabsContent : HTMLElement , contentWrapper : HTMLElement ) : void
574+ {
573575 tabsContent . parentElement . removeChild ( tabsContent ) ;
574576
575577 for ( let i = 0 ; i < tabsContent . childElementCount ; i ++ )
@@ -579,7 +581,8 @@ class GitLabTree
579581 // Add the GitLab container margin and padding class
580582 content . classList . add ( 'container-fluid' ) ;
581583
582- if ( ! content . classList . contains ( 'diffs' ) ) {
584+ if ( ! content . classList . contains ( 'diffs' ) )
585+ {
583586 // Add the GitLab limited-width container classes
584587 content . classList . add ( 'container-limited' , 'limit-container-width' ) ;
585588 }
0 commit comments