diff --git a/.vitepress/theme/components/CompatibilityMatrixTableIcon.vue b/.vitepress/theme/components/CompatibilityMatrixTableIcon.vue index 1d5098043..be6315389 100644 --- a/.vitepress/theme/components/CompatibilityMatrixTableIcon.vue +++ b/.vitepress/theme/components/CompatibilityMatrixTableIcon.vue @@ -6,9 +6,13 @@ import { computed } from 'vue' export type Status = 'ok' | 'failed' | 'no-data' -const props = defineProps<{ - status: Status -}>() +const props = withDefaults( + defineProps<{ + status: Status + inline: boolean + }>(), + { inline: false }, +) // eslint-disable-next-line vue/return-in-computed-property const chosenComponent = computed(() => { @@ -24,25 +28,27 @@ const chosenComponent = computed(() => { - diff --git a/src/reference/compatibility-matrix.md b/src/reference/compatibility-matrix.md index 419f75bde..60274b9d5 100644 --- a/src/reference/compatibility-matrix.md +++ b/src/reference/compatibility-matrix.md @@ -9,9 +9,9 @@ The matrix consists of: - **Stories**: Represented in the first column of the matrix, these are directly fetched from the TestOps API. - **SDKs**: Each subsequent column represents an SDK, such as "Java/Kotlin", "JavaScript", "Swift", etc. - **Status Symbols**: The status of each story for an SDK is denoted with: - - indicating the story passed. - - indicating the story failed to pass. - - indicating the data is missing. + - indicating the story passed. + - indicating the story failed to pass. + - indicating the data is missing.