Skip to content

Commit 3b6fff1

Browse files
committed
resolve format error & add styles
1 parent b72a1cf commit 3b6fff1

7 files changed

Lines changed: 14 additions & 6 deletions

File tree

projects/social_platform/src/app/ui/pages/onboarding/stage-one/stage-one.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
max-width: 100%;
1111

1212
@include responsive.apply-desktop {
13-
max-width: 60%;
1413
flex-direction: row;
1514
align-items: center;
15+
max-width: 60%;
1616
}
1717
}
1818
}

projects/social_platform/src/app/ui/pages/onboarding/stage-two/stage-two.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
max-width: 100%;
1111

1212
@include responsive.apply-desktop {
13-
max-width: 60%;
1413
flex-direction: row;
1514
align-items: center;
15+
max-width: 60%;
1616
}
1717
}
1818
}

projects/social_platform/src/app/ui/pages/onboarding/stage-zero/stage-zero.component.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,20 @@ export class OnboardingStageZeroComponent implements OnInit, OnDestroy {
9797
protected readonly isHintEducationVisible = this.tooltipInfoService.isHintEducationVisible;
9898
protected readonly isHintEducationDescriptionVisible =
9999
this.tooltipInfoService.isHintEducationDescriptionVisible;
100+
100101
protected readonly isHintWorkVisible = this.tooltipInfoService.isHintWorkVisible;
101102
protected readonly isHintWorkNameVisible = this.tooltipInfoService.isHintWorkNameVisible;
102103
protected readonly isHintWorkDescriptionVisible =
103104
this.tooltipInfoService.isHintWorkDescriptionVisible;
105+
104106
protected readonly isHintAchievementsVisible = this.tooltipInfoService.isHintAchievementsVisible;
105107
protected readonly isHintLanguageVisible = this.tooltipInfoService.isHintLanguageVisible;
106108

107109
protected readonly yearListEducation = generateOptionsList(55, "years");
108110

109111
protected readonly educationStatusList =
110112
this.onboardingStageZeroUIInfoService.educationStatusList;
113+
111114
protected readonly educationLevelList = this.onboardingStageZeroUIInfoService.educationStatusList;
112115

113116
protected readonly languageList = this.onboardingStageZeroUIInfoService.languageList;
@@ -136,15 +139,19 @@ export class OnboardingStageZeroComponent implements OnInit, OnDestroy {
136139

137140
protected readonly selectedEntryYearEducationId =
138141
this.onboardingStageZeroUIInfoService.selectedEntryYearEducationId;
142+
139143
protected readonly selectedComplitionYearEducationId =
140144
this.onboardingStageZeroUIInfoService.selectedComplitionYearEducationId;
145+
141146
protected readonly selectedEducationStatusId =
142147
this.onboardingStageZeroUIInfoService.selectedEducationStatusId;
148+
143149
protected readonly selectedEducationLevelId =
144150
this.onboardingStageZeroUIInfoService.selectedEducationLevelId;
145151

146152
protected readonly selectedEntryYearWorkId =
147153
this.onboardingStageZeroUIInfoService.selectedEntryYearWorkId;
154+
148155
protected readonly selectedComplitionYearWorkId =
149156
this.onboardingStageZeroUIInfoService.selectedComplitionYearWorkId;
150157

projects/social_platform/src/app/ui/pages/profile/edit/edit.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ export class ProfileEditComponent implements OnInit, OnDestroy, AfterViewInit {
178178

179179
protected readonly isModalErrorSkillsChoose =
180180
this.profileEditInfoService.isModalErrorSkillsChoose;
181+
181182
protected readonly isModalErrorSkillChooseText =
182183
this.profileEditInfoService.isModalErrorSkillChooseText;
183184

projects/social_platform/src/app/ui/pages/program/detail/list/list.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ export class ProgramListComponent implements OnInit, OnDestroy, AfterViewInit {
7070
protected readonly loadingExportProjects = this.exportFileInfoService.loadingExportProjects;
7171
protected readonly loadingExportSubmittedProjects =
7272
this.exportFileInfoService.loadingExportSubmittedProjects;
73+
7374
protected readonly loadingExportRates = this.exportFileInfoService.loadingExportRates;
7475
protected readonly loadingExportCalculations =
7576
this.exportFileInfoService.loadingExportCalculations;

projects/social_platform/src/app/ui/pages/program/detail/main/main.component.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ export class ProgramDetailMainComponent implements OnInit, OnDestroy {
5353

5454
protected readonly isAssignProjectToProgramError =
5555
this.projectAdditionalService.getIsAssignProjectToProgramError();
56+
5657
protected readonly errorAssignProjectToProgramModalMessage =
5758
this.projectAdditionalService.errorAssignProjectToProgramModalMessage;
5859

projects/social_platform/src/app/ui/pages/projects/detail/work-section/work-section.component.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ import { CommonModule } from "@angular/common";
44
import { Component, inject, OnDestroy, OnInit } from "@angular/core";
55
import { ButtonComponent } from "@ui/components";
66
import { IconComponent } from "@uilib";
7-
import { map, Subscription } from "rxjs";
8-
import { ActivatedRoute, RouterLink } from "@angular/router";
9-
import { VacancyResponse } from "projects/social_platform/src/app/domain/vacancy/vacancy-response.model";
10-
import { VacancyService } from "projects/social_platform/src/app/api/vacancy/vacancy.service";
7+
import { RouterLink } from "@angular/router";
118
import { ProjectsDetailWorkSectionInfoService } from "projects/social_platform/src/app/api/project/facades/detail/work-section/projects-detail-work-section-info.service";
129
import { ProjectsDetailWorkSectionUIInfoService } from "projects/social_platform/src/app/api/project/facades/detail/work-section/ui/projects-detail-work-section-ui-info.service";
1310

@@ -23,6 +20,7 @@ export class ProjectWorkSectionComponent implements OnInit, OnDestroy {
2320
private readonly projectsDetailWorkSectionInfoService = inject(
2421
ProjectsDetailWorkSectionInfoService
2522
);
23+
2624
private readonly projectsDetailWorkSectionUIInfoService = inject(
2725
ProjectsDetailWorkSectionUIInfoService
2826
);

0 commit comments

Comments
 (0)