Make linter happy
This commit is contained in:
parent
1434cfedda
commit
f67ec66d9b
@ -56,13 +56,13 @@
|
||||
<script>
|
||||
import 'font-awesome-webpack'
|
||||
|
||||
import FlatsTableLine from './flatstableline.vue';
|
||||
import FlatsTableLine from './flatstableline.vue'
|
||||
|
||||
import { capitalize } from '../tools'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
FlatsTableLine,
|
||||
FlatsTableLine
|
||||
},
|
||||
|
||||
data () {
|
||||
@ -129,7 +129,7 @@ export default {
|
||||
this.sortBy = field
|
||||
}
|
||||
},
|
||||
capitalize: capitalize,
|
||||
capitalize: capitalize
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
@ -66,33 +66,33 @@ export default {
|
||||
props: {
|
||||
flat: Object,
|
||||
showNotationColumn: Boolean,
|
||||
showNotes: Boolean,
|
||||
showNotes: Boolean
|
||||
},
|
||||
|
||||
computed: {
|
||||
capitalizedStatus() {
|
||||
return capitalize(this.$t('status.followed'));
|
||||
capitalizedStatus () {
|
||||
return capitalize(this.$t('status.followed'))
|
||||
},
|
||||
photo() {
|
||||
photo () {
|
||||
if (this.flat.photos && this.flat.photos.length > 0) {
|
||||
if (this.flat.photos[0].local) {
|
||||
return `/data/img/${this.flat.photos[0].local}`;
|
||||
return `/data/img/${this.flat.photos[0].local}`
|
||||
}
|
||||
return this.flat.photos[0].url;
|
||||
return this.flat.photos[0].url
|
||||
}
|
||||
return null;
|
||||
},
|
||||
notationRange() {
|
||||
return range(this.flat.notation);
|
||||
return null
|
||||
},
|
||||
notationRange () {
|
||||
return range(this.flat.notation)
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
updateFlatStatus (id, status) {
|
||||
this.$store.dispatch('updateFlatStatus', { flatId: id, newStatus: status })
|
||||
},
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
@ -28,14 +28,14 @@ export default {
|
||||
},
|
||||
|
||||
computed: {
|
||||
photosURLOrLocal() {
|
||||
photosURLOrLocal () {
|
||||
return this.photos.map(photo => {
|
||||
if (photo.local) {
|
||||
return `/data/img/${photo.local}`;
|
||||
return `/data/img/${photo.local}`
|
||||
}
|
||||
return photo.url;
|
||||
});
|
||||
},
|
||||
return photo.url
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
created () {
|
||||
|
@ -42,7 +42,7 @@ export default {
|
||||
'utilities_included': '(utilities included)',
|
||||
'utilities_excluded': '(utilities excluded)',
|
||||
'Description': 'Description',
|
||||
'First_posted' : 'First posted',
|
||||
'First_posted': 'First posted',
|
||||
'Details': 'Details',
|
||||
'Metadata': 'Metadata',
|
||||
'postal_code': 'Postal code',
|
||||
|
@ -59,8 +59,8 @@ export default {
|
||||
|
||||
data () {
|
||||
return {
|
||||
showExpiredFlats: false,
|
||||
};
|
||||
showExpiredFlats: false
|
||||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
|
Loading…
Reference in New Issue
Block a user