Commit a574eb0f authored by Gauri Amol Pande's avatar Gauri Amol Pande
Browse files

Merge branch '53-scrollining-in-ride-history-2' into 'master'

Resolve "Scrollining in Ride History"

Closes #53

See merge request 92khra1mst/hft_awado_app!41
parents 2c2bd6fc e491395d
......@@ -22,7 +22,8 @@ const routes: Routes = [
{
path: 'register',
loadChildren: () => import('./auth/register/register.module').then( m => m.RegisterPageModule)
}, {
},
{
path: 'myreservation',
loadChildren: () => import('./myreservation/myreservation.module').then( m => m.MyreservationPageModule)
},
......@@ -34,6 +35,10 @@ const routes: Routes = [
path: 'ridehistory',
loadChildren: () => import('./ridehistory/ridehistory.module').then( m => m.RidehistoryPageModule)
},
{
path: 'feedback',
loadChildren: () => import('./feedback/feedback.module').then( m => m.FeedbackPageModule)
},
{
path: 'help-line',
loadChildren: () => import('./help-line/help-line.module').then( m => m.HelpLinePageModule)
......
......@@ -38,6 +38,11 @@ export class AppComponent {
url: '/ridehistory',
icon: 'clipboard'
},
{
title: 'Feedback',
url: '/feedback',
icon: 'clipboard'
},
{
title: 'Help',
url: '/help-line',
......
......@@ -345,6 +345,7 @@ export class HirebikePage implements OnInit {
let bikeApi = this.httpClient.get(url, { headers });
bikeApi.subscribe((resp) => {
console.log('my data: ', resp);
this.feedbackService.setBikeid(this.bikeDetails.id);
this.loadingService.hideLoader();
this.toastService.showToast("Trip Started");
this.isBikeHired = true;
......
.ride-list-container{
position: relative;
overflow-y: scroll;
.bike-list-expander{
position: absolute;
font-size: 32px;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment