Skip to content

Commit

Permalink
cleans up profile and search
Browse files Browse the repository at this point in the history
  • Loading branch information
‘Michael committed Dec 21, 2018
1 parent 7684aba commit e6099ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 22 deletions.
17 changes: 2 additions & 15 deletions src/components/profiles/Profile.vue
Original file line number Diff line number Diff line change
@@ -1,20 +1,8 @@
<template>
<div class="badges-container">
<div class="badges">
<!-- <v-container>
<v-layout align-center justify-space-around>
<v-flex> -->
<!-- <icon name="flag"></icon>
<v-icon>far fa-calendar-alt</v-icon>
<v-icon>fas fa-trophy</v-icon> -->
<!-- </v-flex>
</v-layout>
</v-container> -->
</div>

<div class="selected-features">
<section>
<Loading :loading="loading"/>
<h2>MY FAVORITE ALBUM & ARTISTS</h2>
<h2>MY FAVORITE ALBUM &amp; ARTISTS</h2>
<ul>
<FavoriteArtists v-for="favorite in favorites"
:key="favorite.album"
Expand Down Expand Up @@ -58,7 +46,6 @@ export default {
console.log(this.selected);
}
}
};
</script>

Expand Down
13 changes: 6 additions & 7 deletions src/components/search/Search.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<template>
<section>
<form @submit.prevent="handleSubmit">
<input v-model="keyword">
<button>Search</button>
</form>

</section>
<section>
<form @submit.prevent="handleSubmit">
<input v-model="keyword">
<button>Search</button>
</form>
</section>
</template>

<script>
Expand Down

0 comments on commit e6099ef

Please sign in to comment.