From 9c914e1d8bb24661c217b6c05b6c6a1bd9ee39ef Mon Sep 17 00:00:00 2001 From: sergeybodin Date: Wed, 6 Sep 2023 14:58:19 +0300 Subject: [PATCH 1/2] view-man --- .../list/member-section-list.component.scss | 3 ++- src/assets/images/view-man.svg | 24 +++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 src/assets/images/view-man.svg diff --git a/src/app/_modules/pages/sections/types/basic/member/list/member-section-list.component.scss b/src/app/_modules/pages/sections/types/basic/member/list/member-section-list.component.scss index 1ed0e57..3dc97d2 100644 --- a/src/app/_modules/pages/sections/types/basic/member/list/member-section-list.component.scss +++ b/src/app/_modules/pages/sections/types/basic/member/list/member-section-list.component.scss @@ -30,7 +30,7 @@ gap: 40px; width: 100%; flex-wrap: wrap; - + .item { object-fit: cover; display: flex; @@ -41,6 +41,7 @@ } .image { + background: url("/assets/images/view-man.svg") center no-repeat; img { width: 273px; object-fit: cover; diff --git a/src/assets/images/view-man.svg b/src/assets/images/view-man.svg new file mode 100644 index 0000000..25c3cd0 --- /dev/null +++ b/src/assets/images/view-man.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + From d67cc60788e195567119caef3388113f4107b477 Mon Sep 17 00:00:00 2001 From: sergeybodin Date: Thu, 7 Sep 2023 13:49:56 +0300 Subject: [PATCH 2/2] 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() { } } +