Skip to content

Commit

Permalink
Ng17 bug fixes (#232)
Browse files Browse the repository at this point in the history
* Update ts version

* Update angular version

* Update clarity version

* Refactor markdown component

* Update cds core and add style sheets

* Add theme settings

* Update @angular/cdk

* Fix markdown rendering

* Set background color via variable to consider theme changes

* Implement custom text tooltip component

* Add prettier as dev dependency

* Add lint-staged as dev dependency

* Migrate code to new @if/@for/@switch syntax

* Update angular-split version

* Migrate ngx-dynamic-hooks to v3

* Replace deprecated xterm packages

* Fix path to xterm style sheet

* remove unused Web Components polyfills

* update @auth0/angular-jwt

* update ng2-charts

* update packages

* run nmp audit fix

* Add authn service. Improve theme handler

* Minor fix

* Ensure that note component always receives valid type

* Enable strict null checks & function types

* Fix bug that steps do not load initially

* Remove unused component

* Fix: Reference to scenario needed to correctly update steps

* Fix icons

* Remove unused code

* Replace clr-alerts by our alert component

* Minor fix

* Use "@else" or "@else if" where possible

* Simplify glossary component

* Fix nested md in hidden/node component

* Escape code to allow double quotes etc.

* Prevent removal of backslashes in ngx-dynamic-hooks inputs

* Clarity css vars changed ... add login padding

* Fix path

* Allow empty diffs after formatting

* Use async pipe for markdown Promise

---------

Co-authored-by: PhilipAB <[email protected]>
  • Loading branch information
PhilipAB and PhilipAB authored Dec 6, 2024
1 parent bbbfff5 commit 99d4202
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build:prod": "ng build --configuration production --aot",
"test": "ng test",
"lint": "ng lint",
"prettify": "lint-staged"
"prettify": "lint-staged --allow-empty"
},
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/app/data/vm.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class VmService {
);
}
public listByScheduledEvent(id: String) {
return this.gargAdmin.get(`/a/vm/scheduledevent/${id}`).pipe(
return this.gargAdmin.get(`/scheduledevent/${id}`).pipe(
switchMap((s: ServerResponse) => {
return of(JSON.parse(atou(s.content)));
}),
Expand Down
2 changes: 1 addition & 1 deletion src/app/printable/printable.component.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<div [innerHTML]="scenario | markdown"></div>
<div [innerHTML]="scenario | markdown | async"></div>

0 comments on commit 99d4202

Please sign in to comment.