Skip to content

Commit

Permalink
🎨 SEO compatible + .fr & .com compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
s-rigaud committed Nov 28, 2022
1 parent 96842e8 commit c43ccc3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "huskyfy",
"version": "1.1.6",
"version": "1.2.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavbarHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<v-spacer></v-spacer>

<v-menu offset="12" transition="slide-y-transition">
<v-menu offset="14" transition="slide-y-transition">
<template v-slot:activator="{ props }">
<div id="user-info" v-bind="props">
<h3 id="profile-name" class="rainbow-text"> {{ userStore.username }} </h3>
Expand Down
1 change: 1 addition & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { createApp } from 'vue'

import App from '@/App.vue'
import router from '@/router'
import { createPinia } from 'pinia'
Expand Down
4 changes: 2 additions & 2 deletions src/views/PlaylistDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
<v-select v-model="selectedGenres" :label="$t('track.filters.genres')"
:items="playlistsStore.getTopGenres(playlistId)" item-title="cap_name" item-value="name"
variant="outlined" density="compact" multiple class="filter-select"
:menu-props="{ 'max-height': '250px' }">
:menu-props="{ 'maxHeight': '250px' }">
</v-select>
</div>

<div id="artist-filter">
<v-select v-model="selectedArtists" :label="$t('track.filters.artists')" :items="getSortedArtists()"
item-title="name" variant="outlined" density="compact" multiple return-object
:menu-props="{ 'max-height': '250px' }">
:menu-props="{ 'maxHeight': '250px' }">
<template v-slot:selection="{ item, index }: SlotProps">
<v-chip v-if="index < 2" variant="outlined">
<v-avatar>
Expand Down

0 comments on commit c43ccc3

Please sign in to comment.