@@ -252,7 +252,7 @@ function HotelBookApp() {
252
252
priceCollectionData . current = priceCollection ;
253
253
lineThroughPriceText . current . innerText = '$' + price . toFixed ( 2 ) ;
254
254
taxedPriceText . current . innerText = '$' + priceCollection . TaxedPrice ;
255
- priceStatementText . current . innerHTML = 'includes ' + selectedRoom . DiscountPercentage + '% discount (<span class="e-discount-style">-$' + priceCollection . DiscountAmount + '</span>) and ' + selectedRoom . TaxPercentage + '% tax (<span class="e-tax-style">+$' + priceCollection . TaxAmount + '</span>)' ;
255
+ priceStatementText . current . innerHTML = 'Includes ' + selectedRoom . DiscountPercentage + '% discount (<span class="e-discount-style">-$' + priceCollection . DiscountAmount + '</span>) and ' + selectedRoom . TaxPercentage + '% tax (<span class="e-tax-style">+$' + priceCollection . TaxAmount + '</span>)' ;
256
256
}
257
257
258
258
// This method calls for navigate the user to booking page and rendering the input field with form validator
@@ -409,7 +409,7 @@ function HotelBookApp() {
409
409
< ChipListComponent cssClass = 'e-outline' >
410
410
< ChipsDirective >
411
411
{ hotelFacilityList . map ( ( item , index ) => (
412
- < ChipDirective key = { index } text = { item } cssClass = "e-info" > </ ChipDirective >
412
+ < ChipDirective key = { index } text = { item } cssClass = "e-info" enabled = { false } > </ ChipDirective >
413
413
) ) }
414
414
</ ChipsDirective >
415
415
</ ChipListComponent >
@@ -419,7 +419,7 @@ function HotelBookApp() {
419
419
< ChipListComponent cssClass = 'e-outline' >
420
420
< ChipsDirective >
421
421
{ roomFacilityList . map ( ( item , index ) => (
422
- < ChipDirective key = { index } text = { item } cssClass = "e-info" > </ ChipDirective >
422
+ < ChipDirective key = { index } text = { item } cssClass = "e-info" enabled = { false } > </ ChipDirective >
423
423
) ) }
424
424
</ ChipsDirective >
425
425
</ ChipListComponent >
@@ -435,7 +435,7 @@ function HotelBookApp() {
435
435
< ChipListComponent cssClass = 'e-outline' >
436
436
< ChipsDirective >
437
437
{ extrasList . map ( ( item , index ) => (
438
- < ChipDirective key = { index } text = { item } cssClass = "e-success" > </ ChipDirective >
438
+ < ChipDirective key = { index } text = { item } cssClass = "e-success" enabled = { false } > </ ChipDirective >
439
439
) ) }
440
440
</ ChipsDirective >
441
441
</ ChipListComponent >
@@ -444,10 +444,11 @@ function HotelBookApp() {
444
444
< div className = 'e-price-info' >
445
445
< div >
446
446
< span className = 'e-cost-line-through-styler normal-hint-text-color' > ${ props . Price . toFixed ( 2 ) } </ span >
447
+ < span className = 'e-arrow-styler normal-hint-text-color' > →</ span >
447
448
< span className = 'e-cost-styler' > ${ priceCollection . TaxedPrice } </ span >
448
449
</ div >
449
450
< div className = 'normal-text-color e-semi-title-header-text' >
450
- includes { props . DiscountPercentage } % discount (< span className = 'e-discount-style' > -${ priceCollection . DiscountAmount } </ span > ) and { props . TaxPercentage } % tax (< span className = 'e-tax-style' > +${ priceCollection . TaxAmount } </ span > )
451
+ Includes { props . DiscountPercentage } % discount (< span className = 'e-discount-style' > -${ priceCollection . DiscountAmount } </ span > ) and { props . TaxPercentage } % tax (< span className = 'e-tax-style' > +${ priceCollection . TaxAmount } </ span > )
451
452
</ div >
452
453
</ div >
453
454
</ div >
@@ -970,6 +971,7 @@ function HotelBookApp() {
970
971
< div className = 'e-price-info' >
971
972
< div >
972
973
< span className = 'e-cost-line-through-styler normal-hint-text-color' ref = { e => lineThroughPriceText . current = e } > </ span >
974
+ < span className = 'e-arrow-styler normal-hint-text-color' > →</ span >
973
975
< span className = 'e-cost-styler' ref = { e => taxedPriceText . current = e } > </ span >
974
976
</ div >
975
977
< div className = 'normal-text-color e-semi-title-header-text' ref = { e => priceStatementText . current = e } > </ div >
@@ -991,7 +993,7 @@ function HotelBookApp() {
991
993
< ChipListComponent cssClass = 'e-outline' >
992
994
< ChipsDirective >
993
995
{ selectedRoom . HotelFacility . split ( ', ' ) . map ( ( item , index ) => (
994
- < ChipDirective key = { index } text = { item } cssClass = "e-info" > </ ChipDirective >
996
+ < ChipDirective key = { index } text = { item } cssClass = "e-info" enabled = { false } > </ ChipDirective >
995
997
) ) }
996
998
</ ChipsDirective >
997
999
</ ChipListComponent >
@@ -1001,7 +1003,7 @@ function HotelBookApp() {
1001
1003
< ChipListComponent cssClass = 'e-outline' >
1002
1004
< ChipsDirective >
1003
1005
{ selectedRoom . RoomFacility . split ( ', ' ) . map ( ( item , index ) => (
1004
- < ChipDirective key = { index } text = { item } cssClass = "e-info" > </ ChipDirective >
1006
+ < ChipDirective key = { index } text = { item } cssClass = "e-info" enabled = { false } > </ ChipDirective >
1005
1007
) ) }
1006
1008
</ ChipsDirective >
1007
1009
</ ChipListComponent >
0 commit comments