make web after upgrading
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
parent
514be6f108
commit
8991a07e98
20
web/.babelrc
20
web/.babelrc
|
@ -6,27 +6,27 @@
|
|||
[
|
||||
"@babel/plugin-proposal-decorators",
|
||||
{
|
||||
"decoratorsBeforeExport": true
|
||||
}
|
||||
"decoratorsBeforeExport": true,
|
||||
},
|
||||
],
|
||||
[
|
||||
"@babel/plugin-transform-class-properties",
|
||||
{
|
||||
"loose": true
|
||||
}
|
||||
"loose": true,
|
||||
},
|
||||
],
|
||||
[
|
||||
"@babel/plugin-transform-runtime",
|
||||
{
|
||||
"regenerator": true
|
||||
}
|
||||
"regenerator": true,
|
||||
},
|
||||
],
|
||||
"macros",
|
||||
[
|
||||
"@babel/plugin-transform-private-property-in-object",
|
||||
{
|
||||
"loose": true
|
||||
}
|
||||
]
|
||||
]
|
||||
"loose": true,
|
||||
},
|
||||
],
|
||||
],
|
||||
}
|
||||
|
|
|
@ -203,8 +203,9 @@ export class LDAPProviderViewPage extends AKElement {
|
|||
class="pf-c-form-control"
|
||||
readonly
|
||||
type="text"
|
||||
value=${`cn=${this.me?.user
|
||||
.username},ou=users,${this.provider?.baseDn?.toLowerCase()}`}
|
||||
value=${`cn=${
|
||||
this.me?.user.username
|
||||
},ou=users,${this.provider?.baseDn?.toLowerCase()}`}
|
||||
/>
|
||||
</div>
|
||||
<div class="pf-c-form__group">
|
||||
|
|
Reference in New Issue