added shutdown warning

This commit is contained in:
Eugene Pankov 2023-08-10 08:36:33 +02:00
parent 6e8e63c9f0
commit 5325776159
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4
2 changed files with 5 additions and 0 deletions

View File

@ -42,3 +42,7 @@
fa-icon.me-2([icon]='_saveIcon', [fixedWidth]='true')
div
div To save profiles and settings, #[a(href='/login') log in].
.alert.alert-warning.d-flex.border-0.m-0(*ngIf='showDiscontinuationWarning')
fa-icon.me-2([icon]='_warningIcon', [fixedWidth]='true')
div
div app.tabby.sh will be shut down in September due to lack of funding, but you can run your own instance - check out the #[a(href='https://github.com/eugeny/tabby-web', target='_blank') tabby-web repo]. Make sure to copy your configuration as it won't be available later.

View File

@ -29,6 +29,7 @@ export class MainComponent {
showApp = false
noVersionsAdded = false
missingVersion: string|undefined
showDiscontinuationWarning = location.hostname === 'localhost'
@ViewChild('iframe') iframe: ElementRef