Skip to content

Commit

Permalink
Merge branch 'hotfix/1.5.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Lerado committed Feb 19, 2024
2 parents d069d6d + 65143d1 commit 499417d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.5.5](https://github.com/Lerado/movoo-app/compare/v1.5.4...v1.5.5) (2024-02-19)


### Bug Fixes

* **coming-soon:** navigation to coming soon page broken after #f596ec6 ([a96369c](https://github.com/Lerado/movoo-app/commit/a96369c75e87009cdfda113ab30ec5aa3b1a06c4)), closes [#f596ec6](https://github.com/Lerado/movoo-app/issues/f596ec6)
* **movies:** check null safety for movie trailer ([1ee2bcc](https://github.com/Lerado/movoo-app/commit/1ee2bcc1594efbeb92a22b8e59b04951cb72c331))

### [1.5.4](https://github.com/Lerado/movoo-app/compare/v1.5.3...v1.5.4) (2024-02-14)

### [1.5.3](https://github.com/Lerado/movoo-app/compare/v1.5.2...v1.5.3) (2024-02-14)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "movoo-app",
"version": "1.5.4",
"version": "1.5.5",
"scripts": {
"ng": "ng",
"start": "node server.js",
Expand Down
2 changes: 1 addition & 1 deletion src/app/modules/coming-soon/coming-soon.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { ComingSoonPageComponent } from './pages/coming-soon-page/coming-soon-pa

export default [
{
path: '',
path: '**',
title: 'Feature coming soon',
component: ComingSoonPageComponent
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ <h1 @fadeInLeft class="text-3xl font-bold text-white">{{ movie().title }}</h1>
</a>
}
<!-- Trailer button -->
@if (movieTrailer()) {
<div @zoomIn class="flex justify-end w-11/12">
<button (click)="showTrailer.set(true)" [matTooltip]="'Watch ' + movieTrailer().name"
[matTooltipPosition]="'above'"
Expand All @@ -94,6 +95,7 @@ <h1 @fadeInLeft class="text-3xl font-bold text-white">{{ movie().title }}</h1>
[svgIcon]="'heroicons_outline:video-camera'"></mat-icon>
</button>
</div>
}
@if (movie().production_companies?.length) {
<ul class="flex gap-4 mt-10">
@for (company of movie().production_companies; track company) {
Expand Down

0 comments on commit 499417d

Please sign in to comment.