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 d80c709 commit b0ef6d9Copy full SHA for b0ef6d9
app/components/Package/Replacement.vue
@@ -14,9 +14,12 @@ const nodeVersion = computed(() => {
14
return nodeEngine?.minVersion || null
15
})
16
17
-const replacementDescription = props.replacement.type === 'documented' ? null : useMarkdown(() => ({
18
- text: props.replacement.description ?? '',
19
-}));
+const replacementDescription =
+ props.replacement.type === 'documented'
+ ? null
20
+ : useMarkdown(() => ({
21
+ text: props.replacement.description ?? '',
22
+ }))
23
</script>
24
25
<template>
0 commit comments