Skip to content

Commit 548afef

Browse files
authored
Merge pull request #58 from janniks/fix-nested-lists
Remove start from nested lists
2 parents b425ae1 + 5d612ac commit 548afef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blocks/helpers/nested-list.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<ul v-if="type === 'bulleted_list'" class="notion-list notion-list-disc">
33
<slot />
44
</ul>
5-
<ol v-else class="notion-list notion-list-numbered" :start="start">
5+
<ol v-else class="notion-list notion-list-numbered">
66
<slot />
77
</ol>
88
</template>

0 commit comments

Comments
 (0)