Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove debug #587

Merged
merged 2 commits into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-push-diamcornet.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: diam-disclosure
name: diam-cornetservice

on:
push:
Expand Down
3 changes: 1 addition & 2 deletions workspace/apps/pidp/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { EnvironmentConfig } from './environments/environment-config.model';
// assets folder, otherwise local development in/outside of a container relies
// on the local environment files.

fetch('./assets/environment.json')
fetch('/assets/environment.json')
.then((response) => response.json())
.then((configMap: EnvironmentConfig) => {
let appConfig = APP_DI_CONFIG;
Expand All @@ -25,7 +25,6 @@ fetch('./assets/environment.json')
})
.catch((err) => {
console.warn('Config error - revert to local: ' + err);
alert('no config');
return APP_DI_CONFIG;
})
.then((appConfig: AppConfig) => {
Expand Down