@@ -252,7 +252,7 @@ function HotelBookApp() {
252252 priceCollectionData . current = priceCollection ;
253253 lineThroughPriceText . current . innerText = '$' + price . toFixed ( 2 ) ;
254254 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>)' ;
256256 }
257257
258258 // This method calls for navigate the user to booking page and rendering the input field with form validator
@@ -409,7 +409,7 @@ function HotelBookApp() {
409409 < ChipListComponent cssClass = 'e-outline' >
410410 < ChipsDirective >
411411 { 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 >
413413 ) ) }
414414 </ ChipsDirective >
415415 </ ChipListComponent >
@@ -419,7 +419,7 @@ function HotelBookApp() {
419419 < ChipListComponent cssClass = 'e-outline' >
420420 < ChipsDirective >
421421 { 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 >
423423 ) ) }
424424 </ ChipsDirective >
425425 </ ChipListComponent >
@@ -435,7 +435,7 @@ function HotelBookApp() {
435435 < ChipListComponent cssClass = 'e-outline' >
436436 < ChipsDirective >
437437 { 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 >
439439 ) ) }
440440 </ ChipsDirective >
441441 </ ChipListComponent >
@@ -444,10 +444,11 @@ function HotelBookApp() {
444444 < div className = 'e-price-info' >
445445 < div >
446446 < 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 >
447448 < span className = 'e-cost-styler' > ${ priceCollection . TaxedPrice } </ span >
448449 </ div >
449450 < 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 > )
451452 </ div >
452453 </ div >
453454 </ div >
@@ -970,6 +971,7 @@ function HotelBookApp() {
970971 < div className = 'e-price-info' >
971972 < div >
972973 < 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 >
973975 < span className = 'e-cost-styler' ref = { e => taxedPriceText . current = e } > </ span >
974976 </ div >
975977 < div className = 'normal-text-color e-semi-title-header-text' ref = { e => priceStatementText . current = e } > </ div >
@@ -991,7 +993,7 @@ function HotelBookApp() {
991993 < ChipListComponent cssClass = 'e-outline' >
992994 < ChipsDirective >
993995 { 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 >
995997 ) ) }
996998 </ ChipsDirective >
997999 </ ChipListComponent >
@@ -1001,7 +1003,7 @@ function HotelBookApp() {
10011003 < ChipListComponent cssClass = 'e-outline' >
10021004 < ChipsDirective >
10031005 { 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 >
10051007 ) ) }
10061008 </ ChipsDirective >
10071009 </ ChipListComponent >
0 commit comments