mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-23 02:22:02 +03:00
lint
This commit is contained in:
parent
2f13f3a401
commit
760311ffa0
@ -1,5 +1,5 @@
|
|||||||
diff --git a/node_modules/app-builder-lib/out/appInfo.js b/node_modules/app-builder-lib/out/appInfo.js
|
diff --git a/node_modules/app-builder-lib/out/appInfo.js b/node_modules/app-builder-lib/out/appInfo.js
|
||||||
index 25a159e..d8a0262 100644
|
index 25a159e..bfe0590 100644
|
||||||
--- a/node_modules/app-builder-lib/out/appInfo.js
|
--- a/node_modules/app-builder-lib/out/appInfo.js
|
||||||
+++ b/node_modules/app-builder-lib/out/appInfo.js
|
+++ b/node_modules/app-builder-lib/out/appInfo.js
|
||||||
@@ -165,7 +165,7 @@ class AppInfo {
|
@@ -165,7 +165,7 @@ class AppInfo {
|
||||||
@ -7,7 +7,7 @@ index 25a159e..d8a0262 100644
|
|||||||
const name = this.name; // https://github.com/electron-userland/electron-builder/issues/2963
|
const name = this.name; // https://github.com/electron-userland/electron-builder/issues/2963
|
||||||
|
|
||||||
- return name.startsWith("@") ? this.sanitizedProductName : name;
|
- return name.startsWith("@") ? this.sanitizedProductName : name;
|
||||||
+ return 'tabby-terminal'
|
+ return 'tabby-terminal';
|
||||||
}
|
}
|
||||||
|
|
||||||
get sanitizedName() {
|
get sanitizedName() {
|
||||||
|
@ -2,7 +2,7 @@ import { Injectable, Inject } from '@angular/core'
|
|||||||
import { NewTabParameters } from './tabs.service'
|
import { NewTabParameters } from './tabs.service'
|
||||||
import { BaseTabComponent } from '../components/baseTab.component'
|
import { BaseTabComponent } from '../components/baseTab.component'
|
||||||
import { PartialProfile, Profile, ProfileProvider } from '../api/profileProvider'
|
import { PartialProfile, Profile, ProfileProvider } from '../api/profileProvider'
|
||||||
;import { SelectorOption } from '../api/selector'
|
import { SelectorOption } from '../api/selector'
|
||||||
import { AppService } from './app.service'
|
import { AppService } from './app.service'
|
||||||
import { configMerge, ConfigProxy, ConfigService } from './config.service'
|
import { configMerge, ConfigProxy, ConfigService } from './config.service'
|
||||||
import { NotificationsService } from './notifications.service'
|
import { NotificationsService } from './notifications.service'
|
||||||
|
@ -58,7 +58,7 @@ export class LocalProfilesService extends ProfileProvider<LocalProfile> {
|
|||||||
|
|
||||||
if (focusedTab instanceof TerminalTabComponent && focusedTab.session) {
|
if (focusedTab instanceof TerminalTabComponent && focusedTab.session) {
|
||||||
profile.options ??= {}
|
profile.options ??= {}
|
||||||
profile.options!.cwd = await focusedTab.session.getWorkingDirectory() ?? undefined
|
profile.options.cwd = await focusedTab.session.getWorkingDirectory() ?? undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ export class EditProfileModalComponent<P extends Profile> {
|
|||||||
|
|
||||||
ngOnInit () {
|
ngOnInit () {
|
||||||
this._profile = this.profile
|
this._profile = this.profile
|
||||||
this.profile = this.profilesService.getConfigProxyForProfile(this.profile) as any
|
this.profile = this.profilesService.getConfigProxyForProfile(this.profile)
|
||||||
}
|
}
|
||||||
|
|
||||||
ngAfterViewInit () {
|
ngAfterViewInit () {
|
||||||
|
Loading…
Reference in New Issue
Block a user