Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

bugfix/#673-background-on-password-reset-missing #699

Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Upload of profile pictures now prevents files with wrong extensions [#581] (https://github.com/h-da/geli/issues/581)
- the view of downloading a empty course [#659](https://github.com/h-da/geli/issues/659)
- Videos in the Course Section now get equally sized and cant grow too big in mobile views. [#534] (https://github.com/h-da/geli/issues/534)
- Background on password reset page is missing [#673] (https://github.com/h-da/geli/issues/673)
- Fix space in the topbar for notification icon for student. [#696] (https://github.com/h-da/geli/issues/696)

### Security
Expand Down
2 changes: 1 addition & 1 deletion app/webFrontend/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class AppComponent implements OnInit {
}

specialContainerStyle(): string {
const routeTest = /^(\/|\/login|\/register|\/activation-resend)$/.test(this.router.url);
const routeTest = /^(\/|\/login|\/register|\/reset|\/activation-resend)$/.test(this.router.url);

return (routeTest && !this.isLoggedIn()) ? 'special-style' : '';
}
Expand Down