mirror of
https://github.com/Eugeny/tabby
synced 2024-12-04 18:40:16 +00:00
fixed #9323 - "Save as profile" profile editability
This commit is contained in:
parent
2bc95bb0e0
commit
21aedb6045
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
||||||
import deepClone from 'clone-deep'
|
|
||||||
import { Injectable, Optional, Inject } from '@angular/core'
|
import { Injectable, Optional, Inject } from '@angular/core'
|
||||||
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
||||||
import { BaseTabComponent, TabContextMenuItemProvider, NotificationsService, MenuItemOptions, TranslateService, SplitTabComponent, PromptModalComponent, ConfigService, PartialProfile, Profile } from 'tabby-core'
|
import { BaseTabComponent, TabContextMenuItemProvider, NotificationsService, MenuItemOptions, TranslateService, SplitTabComponent, PromptModalComponent, ConfigService, PartialProfile, Profile } from 'tabby-core'
|
||||||
|
@ -181,7 +180,7 @@ export class SaveAsProfileContextMenu extends TabContextMenuItemProvider {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
const options = deepClone(tab.profile.options)
|
const options = JSON.parse(JSON.stringify(tab.profile.options))
|
||||||
|
|
||||||
const cwd = await tab.session?.getWorkingDirectory() ?? tab.profile.options.cwd
|
const cwd = await tab.session?.getWorkingDirectory() ?? tab.profile.options.cwd
|
||||||
if (cwd) {
|
if (cwd) {
|
||||||
|
|
Loading…
Reference in a new issue