Skip to content

Commit

Permalink
Release (#12)
Browse files Browse the repository at this point in the history
* Add helm charts

* Rename to identity portal

* Add portal components

* Fix ci

* Fix ci

* Update configs

* Update keycloak realm

* Revert realm to master

* Add service calls and cookies

* Clear request uri on service change
  • Loading branch information
daniel-pimenta-DME authored Oct 29, 2023
1 parent dfea656 commit 50393fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/app/features/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
</select>
<select id="services"
[(ngModel)]="selectedService"
(change)="clearRequestUri()"
class="appearance-none max-md:mt-3 max-md:w-full bg-primary-black block text-secondary-white border border-gray-200 py-3 px-4 pr-8 rounded leading-tight focus:outline-none focus:bg-primary-black focus:border-gray-500">
<option class="p-4" [ngValue]="null" selected>Choose a service</option>
<option [ngValue]="getIdentityApiLink()">Identity API - {{getIdentityApiLink()}}</option>
Expand Down
3 changes: 3 additions & 0 deletions src/app/features/home/home.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,7 @@ export class HomeComponent {
return statusCode + " " + statusText;
}

clearRequestUri() {
this.requestUri = null;
}
}

0 comments on commit 50393fe

Please sign in to comment.