Can't install Drupal on prod

This commit is contained in:
Oliver Davies 2018-12-27 10:46:20 +00:00
parent a8c17e85bb
commit 721503e6e7
2 changed files with 12 additions and 2 deletions

View file

@ -20,9 +20,19 @@
</template>
<script>
import _ from 'lodash'
export default {
props: {
links: Array,
},
computed: {
filteredLinks: function () {
let links = this.links
return _.omitBy(links, _.isEmpty)
}
}
}
</script>