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 712e473 commit aa755feCopy full SHA for aa755fe
1 file changed
app/pages/compare.vue
@@ -87,13 +87,7 @@ const gridHeaders = computed(() =>
87
*/
88
function exportComparisonDataAsMarkdown() {
89
const mdData: Array<Array<string>> = []
90
- mdData.push([
91
- '',
92
- ...gridColumns.value.map(
93
- (col, index) =>
94
- `[${gridHeaders.value[index]}](${NPMX_SITE}/package/${col?.name}/v/${col?.version})`,
95
- ),
96
- ])
+ mdData.push(['', ...gridHeaders.value])
97
const maxLengths = gridHeaders.value.map(header => header.length)
98
99
selectedFacets.value.forEach((facet, index) => {
0 commit comments