File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Umbraco.Web.UI.Client/src/packages/content/content/workspace/views/edit Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -131,10 +131,10 @@ export class UmbContentWorkspaceViewEditElement extends UmbLitElement implements
131
131
${ this . _hasRootGroups && this . _tabs . length > 0
132
132
? html `
133
133
<uui- tab
134
- . label = ${ this . localize . term ( 'general_generic' ) }
134
+ label= ${ this . localize . term ( 'general_generic' ) }
135
135
.active = ${ this . _routerPath + '/root' === this . _activePath ||
136
136
this . _routerPath + '/' === this . _activePath }
137
- . href = ${ this . _routerPath + '/root' } > </ uui- tab>
137
+ href= ${ this . _routerPath + '/root' } > </ uui- tab>
138
138
`
139
139
: '' }
140
140
${ repeat (
@@ -143,10 +143,10 @@ export class UmbContentWorkspaceViewEditElement extends UmbLitElement implements
143
143
( tab , index ) => {
144
144
const path = this . _routerPath + '/tab/' + encodeFolderName ( tab . name || '' ) ;
145
145
return html `<uui- tab
146
- . label = ${ this . localize . string ( tab . name ?? '#general_unnamed' ) }
146
+ label= ${ this . localize . string ( tab . name ?? '#general_unnamed' ) }
147
147
.active = ${ path === this . _activePath ||
148
148
( ! this . _hasRootGroups && index === 0 && this . _routerPath + '/' === this . _activePath ) }
149
- . href = ${ path } > </ uui- tab> ` ;
149
+ href= ${ path } > </ uui- tab> ` ;
150
150
} ,
151
151
) }
152
152
</ uui- tab- group> `
You can’t perform that action at this time.
0 commit comments