upgrade to laravel 7 and set branch to v2
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
},
|
||||
|
||||
computed: {
|
||||
lines(){
|
||||
lines() {
|
||||
return this.showAll ? _take(this.trace, 1000) : _take(this.trace, this.minimumLines);
|
||||
}
|
||||
}
|
||||
@@ -23,17 +23,19 @@
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<table class="table mb-0">
|
||||
<tbody>
|
||||
<tr v-for="line in lines">
|
||||
<td class="card-bg-secondary">{{line}}</td>
|
||||
</tr>
|
||||
<div class="table-responsive">
|
||||
<table class="table mb-0">
|
||||
<tbody>
|
||||
<tr v-for="line in lines">
|
||||
<td class="card-bg-secondary">{{line}}</td>
|
||||
</tr>
|
||||
|
||||
<tr v-if="! showAll">
|
||||
<td class="card-bg-secondary"><a href="*" v-on:click.prevent="showAll = true">Show All</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<tr v-if="! showAll">
|
||||
<td class="card-bg-secondary"><a href="*" v-on:click.prevent="showAll = true">Show All</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
Reference in New Issue
Block a user