Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
hdastageeri
hft_awado_app
Commits
e44f29f9
Commit
e44f29f9
authored
Jan 13, 2020
by
Ratnadeep Rajendra Kharade
Browse files
removed text undefined from list
parent
1815996f
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/app/home/home.page.html
View file @
e44f29f9
...
...
@@ -37,7 +37,7 @@
</ion-row>
<ion-row>
<ion-col
size=
"1"
><ion-icon
name=
"pin"
></ion-icon></ion-col>
<ion-col>
{{bike.address + " " + (bike.HouseNumber || "")}}
</ion-col>
<ion-col>
{{
(
bike.address
|| "")
+ " " + (bike.HouseNumber || "")}}
</ion-col>
</ion-row>
</ion-grid>
<div
class=
"battery-info1"
>
...
...
src/app/home/home.page.ts
View file @
e44f29f9
...
...
@@ -283,10 +283,12 @@ export class HomePage implements OnInit, OnDestroy {
this
.
toastService
.
showToast
(
"
Reservation Successful!
"
);
this
.
router
.
navigateByUrl
(
'
/myreservation
'
);
this
.
loadingService
.
hideLoader
();
this
.
isDetailsVisible
=
false
;
},
(
error
)
=>
{
console
.
log
(
error
);
this
.
loadingService
.
hideLoader
();
this
.
toastService
.
showToast
(
"
Only one bike may be reserved or rented at a time
"
);
this
.
isDetailsVisible
=
false
;
});
});
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment