We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14cf423 commit 4832795Copy full SHA for 4832795
1 file changed
app/pages/compare.vue
@@ -88,7 +88,6 @@ function exportComparisonDataAsMarkdown() {
88
const mdData: Array<Array<string>> = []
89
mdData.push(['', ...gridHeaders.value])
90
const maxLengths = [0, ...gridHeaders.value.map(header => header.length)]
91
- console.log(maxLengths)
92
93
selectedFacets.value.forEach((facet, index) => {
94
const label = facet.label
@@ -108,7 +107,6 @@ function exportComparisonDataAsMarkdown() {
108
107
mdData?.[index + 1]?.forEach((item, index) => {
109
if (item.length > (maxLengths?.[index] || 0)) {
110
maxLengths[index] = item.length
111
- console.log(maxLengths, index, item.length, item)
112
}
113
})
114
0 commit comments