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",
|
"@babel/plugin-proposal-decorators",
|
||||||
{
|
{
|
||||||
"decoratorsBeforeExport": true
|
"decoratorsBeforeExport": true,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"@babel/plugin-transform-class-properties",
|
"@babel/plugin-transform-class-properties",
|
||||||
{
|
{
|
||||||
"loose": true
|
"loose": true,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"@babel/plugin-transform-runtime",
|
"@babel/plugin-transform-runtime",
|
||||||
{
|
{
|
||||||
"regenerator": true
|
"regenerator": true,
|
||||||
}
|
},
|
||||||
],
|
],
|
||||||
"macros",
|
"macros",
|
||||||
[
|
[
|
||||||
"@babel/plugin-transform-private-property-in-object",
|
"@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"
|
class="pf-c-form-control"
|
||||||
readonly
|
readonly
|
||||||
type="text"
|
type="text"
|
||||||
value=${`cn=${this.me?.user
|
value=${`cn=${
|
||||||
.username},ou=users,${this.provider?.baseDn?.toLowerCase()}`}
|
this.me?.user.username
|
||||||
|
},ou=users,${this.provider?.baseDn?.toLowerCase()}`}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="pf-c-form__group">
|
<div class="pf-c-form__group">
|
||||||
|
|
Reference in New Issue