Can't install Drupal on prod
This commit is contained in:
parent
a8c17e85bb
commit
721503e6e7
2 changed files with 12 additions and 2 deletions
|
@ -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>
|
||||
|
|
Reference in a new issue