Skip to content

Commit 05fc284

Browse files
committed
fix: address KVM connection issue
1 parent 6289473 commit 05fc284

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
## [10.1.1](https://github.com/device-management-toolkit/ui-toolkit-angular/compare/v10.1.0...v10.1.1) (2025-08-20)
22

3-
43
### Bug Fixes
54

6-
* address instantiation timing issues with SOL ([727f06e](https://github.com/device-management-toolkit/ui-toolkit-angular/commit/727f06e5baed59a358510bfd803866115b8d3b5f))
5+
- address instantiation timing issues with SOL ([727f06e](https://github.com/device-management-toolkit/ui-toolkit-angular/commit/727f06e5baed59a358510bfd803866115b8d3b5f))
76

87
# [10.1.0](https://github.com/device-management-toolkit/ui-toolkit-angular/compare/v10.0.0...v10.1.0) (2025-07-29)
98

kvm/src/kvm.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class KVMComponent implements OnDestroy {
9393
if (connected && this.redirector == null) {
9494
console.log('KVMComponent: Device connected, initializing KVM...')
9595
this.init()
96-
} else if (!connected) {
96+
} else if (!connected && this.redirector != null) {
9797
console.log('KVMComponent: Device disconnected, stopping KVM...')
9898
this.stopKvm()
9999
}
@@ -209,7 +209,6 @@ export class KVMComponent implements OnDestroy {
209209
this.dataProcessor = null
210210
this.height.set(400)
211211
this.width.set(400)
212-
this.instantiate()
213212
}
214213

215214
stopKvm(): void {

0 commit comments

Comments
 (0)