* proxies

* OS outbound proxy. ugly, needs work

* abstract interface address management

* clearnet and outbound proxies for services

* clean up

* router tab

* smart launching of UIs

* update sdk types

* display outbound proxy on service show and rework menu
This commit is contained in:
Matt Hill
2023-08-07 15:14:03 -06:00
committed by GitHub
parent 0d079f0d89
commit c3ae146580
101 changed files with 2135 additions and 1161 deletions

View File

@@ -128,7 +128,7 @@ export class RecoverPage {
styleUrls: ['./recover.page.scss'],
})
export class DriveStatusComponent {
@Input() hasValidBackup!: boolean
@Input({ required: true }) hasValidBackup!: boolean
}
interface MappedDisk {

View File

@@ -5,7 +5,7 @@ import { Component, Input } from '@angular/core'
templateUrl: 'download-doc.component.html',
})
export class DownloadDocComponent {
@Input() lanAddress!: string
@Input({ required: true }) lanAddress!: string
get crtName(): string {
const hostname = new URL(this.lanAddress).hostname