enterprise/rac: Improve client connection status & bugfixes (#12684) * enterprise/rac: improve status message when connecting/connection failed * set fixed DPI * automatically set resize method for RDP --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: Jens L. <jens@goauthentik.io>
This commit is contained in:
committed by
GitHub
parent
9d81f0598c
commit
01959132e8
@ -18,6 +18,12 @@ export class LoadingOverlay extends AKElement implements ILoadingOverlay {
|
||||
@property({ type: Boolean, attribute: "topmost" })
|
||||
topmost = false;
|
||||
|
||||
@property({ type: Boolean })
|
||||
loading = true;
|
||||
|
||||
@property({ type: String })
|
||||
icon = "";
|
||||
|
||||
static get styles() {
|
||||
return [
|
||||
PFBase,
|
||||
@ -40,7 +46,7 @@ export class LoadingOverlay extends AKElement implements ILoadingOverlay {
|
||||
}
|
||||
|
||||
render() {
|
||||
return html`<ak-empty-state loading header="">
|
||||
return html`<ak-empty-state ?loading=${this.loading} header="" icon=${this.icon}>
|
||||
<span slot="body"><slot></slot></span>
|
||||
</ak-empty-state>`;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user