-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Ionic Skeleton Text to Image component(#1wf7518) #19
Conversation
src/components/Image.vue
Outdated
@@ -1,14 +1,18 @@ | |||
<template> | |||
<img :src="imageUrl"/> | |||
<img :src="imageUrl" v-if="imageUrl" /> | |||
<ion-skeleton-text v-else animated></ion-skeleton-text> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can use self-closing tag here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Improved code readability by using self-closing app.
Thank You sir for reviewing my code.
src/views/Search.vue
Outdated
@@ -5,7 +5,7 @@ | |||
<ion-title>{{ $t("Search") }}</ion-title> | |||
</ion-toolbar> | |||
</ion-header> | |||
<ion-content :fullscreen="true"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is unwanted change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though Sir, it is an unwanted change, But it helps in enhancing UI experience, as we do not get our right hand side scroll bar under the header section.
Thankyou Sir, for reviewing my code.
No description provided.