Fix sign-up stepper
This commit is contained in:
parent
28012ee2a9
commit
54eff47d3e
2 changed files with 19 additions and 2 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [2.2.0]
|
||||
|
||||
## Added
|
||||
|
||||
- New API calls for requesting language data for login page
|
||||
|
||||
### Changed
|
||||
|
||||
- Owner model modified to remove unnecessary fields
|
||||
- Fullnode service uses `session` for API calls.
|
||||
- User service uses `session` for API calls.
|
||||
- Auth-guard service uses new `checkUser` function to confirm session exists and is validated.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Business sign-up stepper skipping is corrected
|
||||
|
||||
## [2.1.0] - 2023-05-02
|
||||
|
||||
### Added
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
<div align="center">
|
||||
<mat-card class="centercard">
|
||||
<h3>{{ vE.businessSignupTitle }}</h3>
|
||||
<mat-vertical-stepper #stepper linear>
|
||||
<mat-step label="{{ vE.businessBizInfo }}" editable="false">
|
||||
<mat-vertical-stepper #stepper [linear]="true">
|
||||
<mat-step label="{{ vE.businessBizInfo }}" [stepControl]="bizForm" editable="false">
|
||||
<p>{{ vE.businessAddrsNobiz }}</p>
|
||||
<mat-card [formGroup]="bizForm">
|
||||
<mat-form-field appearance="outline" [style.width.px]=300>
|
||||
|
|
Loading…
Reference in a new issue