From c1a1f53707d68dbc6e15e2768abccfcf6cf40df1 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Mon, 2 Aug 2021 20:03:02 +0200 Subject: [PATCH] added a default name for duplicated profiles - fixes #4325 --- tabby-settings/src/components/profilesSettingsTab.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabby-settings/src/components/profilesSettingsTab.component.ts b/tabby-settings/src/components/profilesSettingsTab.component.ts index 8fb8421f..58772eb3 100644 --- a/tabby-settings/src/components/profilesSettingsTab.component.ts +++ b/tabby-settings/src/components/profilesSettingsTab.component.ts @@ -65,7 +65,7 @@ export class ProfilesSettingsTabComponent extends BaseComponent { } const profile = deepClone(base) profile.id = null - profile.name = '' + profile.name = `${profile.name} copy` profile.isBuiltin = false profile.isTemplate = false await this.editProfile(profile)