diff --git a/angular.json b/angular.json
index 0529da2..57bf8a9 100644
--- a/angular.json
+++ b/angular.json
@@ -16,9 +16,7 @@
"outputPath": "dist/hotel-manager",
"index": "src/index.html",
"browser": "src/main.ts",
- "polyfills": [
- "zone.js"
- ],
+ "polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"assets": [
{
@@ -27,9 +25,7 @@
},
"src/assets"
],
- "styles": [
- "src/styles.css"
- ],
+ "styles": ["src/styles.css"],
"scripts": []
},
"configurations": {
@@ -74,10 +70,7 @@
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
- "polyfills": [
- "zone.js",
- "zone.js/testing"
- ],
+ "polyfills": ["zone.js", "zone.js/testing"],
"tsConfig": "tsconfig.spec.json",
"assets": [
{
@@ -85,9 +78,7 @@
"input": "public"
}
],
- "styles": [
- "src/styles.css"
- ],
+ "styles": ["src/styles.css"],
"scripts": []
}
}
diff --git a/renovate.json b/renovate.json
index c183f9d..89613e3 100644
--- a/renovate.json
+++ b/renovate.json
@@ -1,6 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
- "extends": [
- "local>Renovate/renovate-config"
- ]
+ "extends": ["local>Renovate/renovate-config"]
}
diff --git a/src/app/Button/button.component.html b/src/app/Button/button.component.html
index 54fb491..245bafa 100644
--- a/src/app/Button/button.component.html
+++ b/src/app/Button/button.component.html
@@ -1 +1,6 @@
-
+
diff --git a/src/app/Button/button.component.ts b/src/app/Button/button.component.ts
index c77daef..96e47fe 100644
--- a/src/app/Button/button.component.ts
+++ b/src/app/Button/button.component.ts
@@ -1,5 +1,4 @@
-import { Component } from "@angular/core";
-
+import { Component } from '@angular/core';
@Component({
selector: 'app-button',
diff --git a/src/app/Child/child.component.html b/src/app/Child/child.component.html
index 84f430a..df67c69 100644
--- a/src/app/Child/child.component.html
+++ b/src/app/Child/child.component.html
@@ -1,4 +1,12 @@
Child
-Balance: {{balance}}
-I'm broke. Now I'm about as poor as Jan-Marlon.
-
+Balance: {{ balance }}
+
+ I'm broke. Now I'm about as poor as Jan-Marlon.
+
+
diff --git a/src/app/Child/child.component.ts b/src/app/Child/child.component.ts
index e03c3ad..d789816 100644
--- a/src/app/Child/child.component.ts
+++ b/src/app/Child/child.component.ts
@@ -1,4 +1,4 @@
-import { Component, Input, Output, EventEmitter } from "@angular/core";
+import { Component, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'app-child',
diff --git a/src/app/HotelItem/HotelItem.component.html b/src/app/HotelItem/HotelItem.component.html
index cb2a46b..329cc33 100644
--- a/src/app/HotelItem/HotelItem.component.html
+++ b/src/app/HotelItem/HotelItem.component.html
@@ -1,8 +1,37 @@
-Name: {{hotel.hotelName}}
-Description: {{hotel.description}}
-Price: {{hotel.price | currency : getCurrencyCode(selectedLanguage) : "symbol" : "2.2-2" : selectedLanguage}}
-