Skip to content

Commit dfbf6aa

Browse files
[autofix.ci] apply automated fixes
1 parent b4d9cee commit dfbf6aa

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/pages/compare.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,7 @@ const canCompare = computed(() => packages.value.length >= 2)
8080
8181
// Allow copying only after all data is loaded
8282
const canCopyTable = computed(
83-
() =>
84-
packagesData.value.length >= 1 &&
85-
packagesData.value.every(data => data !== null),
83+
() => packagesData.value.length >= 1 && packagesData.value.every(data => data !== null),
8684
)
8785
8886
const comparisonView = usePermalink<'table' | 'charts'>('view', 'table')

0 commit comments

Comments
 (0)