Skip to content

Commit cfb215f

Browse files
committed
fix skills sidebar skill-name & rewrite subtext in onboarding
1 parent b23274c commit cfb215f

5 files changed

Lines changed: 24 additions & 22 deletions

File tree

projects/skills/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class AppComponent implements OnInit {
3636

3737
title = "skills";
3838
navItems = [
39-
{ name: "Навыки", icon: "lib", link: "skills" },
39+
// { name: "Навыки", icon: "lib", link: "skills" },
4040
{ name: "Рейтинг", icon: "growth", link: "rating" },
4141
{ name: "Подписка", icon: "receipt", link: "subscription" },
4242
// { name: "Траектория бизнеса", icon: "trackbuss", link: "trackBuss" },

projects/social_platform/src/app/auth/email-verification/email-verification.component.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
<div class="auth__greeting">
88
<h3 class="auth__title">Мы отправили ссылку подтверждения</h3>
99
<p class="auth__info">
10-
Для продолжения регистрации проверь свою почту, чтобы перейти по ссылке подтверждения
10+
Для продолжения регистрации и заполнения резюме подтверди свою почту, для этого мы
11+
отправили тебе письмо со ссылкой подтверждения
1112
</p>
1213
</div>
1314
@if (counter > 0) {

projects/social_platform/src/app/auth/register/register.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h3 class="auth__title auth__title--register">
1919
<ng-container> Для регистрации введите данные </ng-container>
2020
} @else if (step === "info") {
2121
<ng-container>
22-
Заполните основные данные о себе, чтобы мы знали, как к вам обращаться
22+
Начни заполнять данные, которые в дальнейшем станут основой твоего резюме
2323
</ng-container>
2424
}
2525
</p>

projects/social_platform/src/app/office/onboarding/stage-zero/stage-zero.component.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ <h3 class="auth__title">
77
Добро пожаловать, {{ profile.firstName }} {{ profile.lastName }}! ✌️
88
</h3>
99
<p class="auth__info">
10-
Пожалуйста, заполни уточняющие данные о себе, чтобы мы знали, какие команды тебе подойдут
11-
лучше всего, и чтобы сами команды могли тебя найти
10+
Заполни уточняющие данные о себе, которые помогут сформировать сильное резюме и будут отражать
11+
твой опыт.
1212
</p>
1313
</div>
1414
<form [formGroup]="stageForm" class="page__form" (ngSubmit)="onSubmit()">
@@ -100,22 +100,6 @@ <h3 class="auth__title">
100100
</div>
101101
}
102102
</fieldset>
103-
} @if (stageForm.get("description"); as description) {
104-
<fieldset class="page__field">
105-
<label for="description" class="field-label">Краткое описане</label>
106-
<app-input
107-
id="description"
108-
[error]="description | controlError"
109-
type="text"
110-
placeholder="Востоковедение и Африканистика"
111-
formControlName="description"
112-
></app-input>
113-
@if (description | controlError: "required") {
114-
<div class="text-body-14 error">
115-
{{ errorMessage.VALIDATION_REQUIRED }}
116-
</div>
117-
}
118-
</fieldset>
119103
} @if (stageForm.get("educationLevel"); as educationLevel) {
120104
<fieldset>
121105
<label for="educationLevel" class="field-label">Уровень образования</label>
@@ -148,6 +132,22 @@ <h3 class="auth__title">
148132
</div>
149133
}
150134
</fieldset>
135+
} @if (stageForm.get("description"); as description) {
136+
<fieldset class="page__field">
137+
<label for="description" class="field-label">Краткое описание</label>
138+
<app-input
139+
id="description"
140+
[error]="description | controlError"
141+
type="text"
142+
placeholder="Бизнес информатика"
143+
formControlName="description"
144+
></app-input>
145+
@if (description | controlError: "required") {
146+
<div class="text-body-14 error">
147+
{{ errorMessage.VALIDATION_REQUIRED }}
148+
</div>
149+
}
150+
</fieldset>
151151
}
152152
</div>
153153

projects/social_platform/src/app/office/profile/detail/profile-detail.component.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { SubscriptionPlansService, YearsFromBirthdayPipe } from "projects/core";
1212
import { BarComponent, ButtonComponent, IconComponent } from "@ui/components";
1313
import { AvatarComponent } from "@ui/components/avatar/avatar.component";
1414
import { BackComponent } from "@uilib";
15-
import { AsyncPipe } from "@angular/common";
15+
import { AsyncPipe, CommonModule } from "@angular/common";
1616
import { ModalComponent } from "@ui/components/modal/modal.component";
1717

1818
@Component({
@@ -21,6 +21,7 @@ import { ModalComponent } from "@ui/components/modal/modal.component";
2121
styleUrl: "./profile-detail.component.scss",
2222
standalone: true,
2323
imports: [
24+
CommonModule,
2425
RouterLinkActive,
2526
RouterLink,
2627
AvatarComponent,

0 commit comments

Comments
 (0)