Skip to content

Commit

Permalink
Merge pull request #234 from bcgov/dev-AA-4739
Browse files Browse the repository at this point in the history
#4739 updates
  • Loading branch information
abin-aot authored Nov 17, 2023
2 parents 66ebbff + 52efb36 commit 05a7e15
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ <h2>What type of information are you looking for?</h2>
<form [formGroup]="foiForm" novalidate (ngSubmit)="doContinue()">
<div class="form-group">
<label>
<input type="radio" value="general" formControlName="requestType" />
<input type="radio" value="general" formControlName="requestType" disabled="disabled" />
General information about government business
</label>
<label class="warning">
Due to a technical issue we have temporarily disabled submitting <b>general requests</b> through the online form. Please submit your FOI request through email to <a href="mailto:[email protected]">[email protected]</a>. We expect that the online form will be back online by November 21st.
</label>
</div>
<h2>
or
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.warning {
color: red;
font-size: 85%;
}
3 changes: 3 additions & 0 deletions web/src/app/utils-components/base/base.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ export class BaseComponent implements OnInit {
}

goSkipForward() {
if(selection !== "general")
{
this.foiRouter.progress({ direction: 2 });
}
}

toDateValidator(c: FormControl){
Expand Down

0 comments on commit 05a7e15

Please sign in to comment.