Version 1.4.1 #70

Merged
dbroqua merged 8 commits from develop into master 2022-11-02 09:57:00 +01:00
Showing only changes of commit a74c67e241 - Show all commits

View File

@ -1,7 +1,7 @@
<main class="layout-maxed ma-collection-details" id="app" v-cloak @keyup="changeImage">
<h1>
{{item.artists_sort}} - {{item.title}}
<a :href="`/ma-collection?page=1&limit=16&sort=year&order=asc&artists_sort=${item.artists_sort}`">{{item.artists_sort}}</a> - {{item.title}}
<i class="icon-trash" title="Supprimer cette fiche" @click="showConfirmDelete()"></i>
<i class="icon-refresh" title="Mettre à jour les données de cette fiche" @click="updateItem()"></i>
</h1>
@ -327,6 +327,9 @@
this.toggleModal();
});
},
goToArtist() {
return "";
},
},
}).mount('#app');
</script>