Skip to content

Commit

Permalink
fix: icon names
Browse files Browse the repository at this point in the history
  • Loading branch information
gbicou committed May 2, 2023
1 parent f013576 commit 42cddae
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/tiptap-editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@
<v-list>
<v-list-item clickable @click="editor.chain().focus().insertTable().run()">
<v-list-item-icon>
<icons.table />
<icons.Table />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_insert`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -358,7 +358,7 @@
@click="editor.chain().focus().addColumnBefore().run()"
>
<v-list-item-icon>
<icons.insert-column-left />
<icons.InsertColumnLeft />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_add_column_before`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -368,7 +368,7 @@
@click="editor.chain().focus().addColumnAfter().run()"
>
<v-list-item-icon>
<icons.insert-column-right />
<icons.InsertColumnRight />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_add_column_after`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -378,7 +378,7 @@
@click="editor.chain().focus().deleteColumn().run()"
>
<v-list-item-icon>
<icons.delete-column />
<icons.DeleteColumn />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_delete_column`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -389,7 +389,7 @@
@click="editor.chain().focus().addRowBefore().run()"
>
<v-list-item-icon>
<icons.insert-row-top />
<icons.InsertRowTop />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_add_row_before`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -399,7 +399,7 @@
@click="editor.chain().focus().addRowAfter().run()"
>
<v-list-item-icon>
<icons.insert-row-bottom />
<icons.InsertRowBottom />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_add_row_after`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -409,7 +409,7 @@
@click="editor.chain().focus().deleteRow().run()"
>
<v-list-item-icon>
<icons.delete-row />
<icons.DeleteRow />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_delete_row`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -419,7 +419,7 @@
@click="editor.chain().focus().mergeCells().run()"
>
<v-list-item-icon>
<icons.merge-cells />
<icons.MergeCells />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_merge_cells`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -429,7 +429,7 @@
@click="editor.chain().focus().splitCell().run()"
>
<v-list-item-icon>
<icons.split-cell />
<icons.SplitCell />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_split_cell`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -439,7 +439,7 @@
@click="editor.chain().focus().toggleHeaderRow().run()"
>
<v-list-item-icon>
<icons.layout-top />
<icons.LayoutTop />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_toggle_header_row`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -449,7 +449,7 @@
@click="editor.chain().focus().toggleHeaderColumn().run()"
>
<v-list-item-icon>
<icons.layout-left />
<icons.LayoutLeft />
</v-list-item-icon>
<v-list-item-content
><v-text-overflow :text="t(`tiptap.table_toggle_header_column`)"
Expand All @@ -461,7 +461,7 @@
@click="editor.chain().focus().toggleHeaderCell().run()"
>
<v-list-item-icon>
<icons.layout-grid />
<icons.LayoutGrid />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_toggle_header_cell`)" /></v-list-item-content>
</v-list-item>
Expand All @@ -471,7 +471,7 @@
@click="editor.chain().focus().deleteTable().run()"
>
<v-list-item-icon>
<icons.delete-bin />
<icons.DeleteBin />
</v-list-item-icon>
<v-list-item-content><v-text-overflow :text="t(`tiptap.table_delete`)" /></v-list-item-content>
</v-list-item>
Expand Down

0 comments on commit 42cddae

Please sign in to comment.