From d67cc60788e195567119caef3388113f4107b477 Mon Sep 17 00:00:00 2001 From: sergeybodin Date: Thu, 7 Sep 2023 13:49:56 +0300 Subject: [PATCH] button --- .../types/basic/button/button-section.component.html | 2 +- .../sections/types/basic/button/button-section.component.ts | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/_modules/pages/sections/types/basic/button/button-section.component.html b/src/app/_modules/pages/sections/types/basic/button/button-section.component.html index f7c19ef..6c80e75 100644 --- a/src/app/_modules/pages/sections/types/basic/button/button-section.component.html +++ b/src/app/_modules/pages/sections/types/basic/button/button-section.component.html @@ -1 +1 @@ - + diff --git a/src/app/_modules/pages/sections/types/basic/button/button-section.component.ts b/src/app/_modules/pages/sections/types/basic/button/button-section.component.ts index db04128..caeb7dc 100644 --- a/src/app/_modules/pages/sections/types/basic/button/button-section.component.ts +++ b/src/app/_modules/pages/sections/types/basic/button/button-section.component.ts @@ -21,10 +21,11 @@ export class ButtonSectionComponent { get title() { return this.objectsService.getValue(this.section, 'button-title'); } - get targetBlank() { - return this.objectsService.getValue(this.section, 'target-blank'); + get targetSelf() { + return this.objectsService.getValue(this.section, 'target-self'); } ngOnInit() { } } +