styled tracklist table; updated tables styles: now a lot of table classes are reusable!

This commit is contained in:
Roberto Tonino
2020-06-01 23:44:04 +02:00
parent 8c82f3fb6d
commit 375b25cb0c
6 changed files with 211 additions and 148 deletions

View File

@@ -40956,9 +40956,8 @@ const TracklistTab = new Vue({
{ title: 'Artist' },
{ title: '<i class="material-icons">timer</i>', width: '40px' }
];
if (lodash.isEmpty(data.tracks)) {
console.log('show e lodash ok');
if (lodash.isEmpty(data.tracks)) {
this.body = null;
} else {
this.body = data.tracks;
@@ -40979,6 +40978,7 @@ const TracklistTab = new Vue({
{ title: 'Album' },
{ title: '<i class="material-icons">timer</i>', width: '40px' }
];
if (lodash.isEmpty(data.tracks)) {
this.body = null;
} else {

File diff suppressed because one or more lines are too long