Skip to content

Commit

Permalink
dealt with address
Browse files Browse the repository at this point in the history
  • Loading branch information
rossAtQuartech committed Mar 28, 2024
1 parent b2c04ae commit 3428987
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
>
<mat-radio-button
class="primary-radio-button"
*ngFor="let option of radioOption"
*ngFor="let option of booleanOption"
[value]="option"
>
{{ option }}
Expand Down Expand Up @@ -176,7 +176,7 @@
>
<mat-radio-button
class="primary-radio-button"
*ngFor="let option of radioOption"
*ngFor="let option of booleanOption"
[value]="option"
>
{{ option }}
Expand Down Expand Up @@ -214,7 +214,7 @@
>
<mat-radio-button
class="primary-radio-button"
*ngFor="let option of radioOption"
*ngFor="let option of booleanOption"
[value]="option"
>
{{ option }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ import {
LocationsService
} from 'src/app/core/services/locations.service';
import { AddressService } from './address.service';

import * as globalConst from '../../../../core/services/global-constants';
@Component({
selector: 'app-address',
templateUrl: './address.component.html',
styleUrls: ['./address.component.scss']
})
export class AddressComponent implements OnInit, AfterViewChecked, OnDestroy {
primaryAddressForm: UntypedFormGroup;
radioOption: string[] = ['Yes', 'No'];
booleanOption = globalConst.booleanOptions;
filteredOptions: Observable<Country[]>;
mailingFilteredOptions: Observable<Country[]>;
countries: Country[] = [];
Expand Down

0 comments on commit 3428987

Please sign in to comment.