Skip to content

Commit 1ef5aab

Browse files
committed
fix: add correct dropdown label
Closes #20
1 parent 5242272 commit 1ef5aab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/EnhancedToolbarLinkDialog.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,10 @@ export default {
133133
},
134134
selectedLinkTarget: null,
135135
linkTargets: [
136-
{ value: "_blank", text: "_blank" },
137-
{ value: "_self", text: "_blank" },
138-
{ value: "_parent", text: "_parent" },
139-
{ value: "_top", text: "_top" },
136+
{ value: "_blank", text: "Blank" },
137+
{ value: "_self", text: "Self" },
138+
{ value: "_parent", text: "Parent" },
139+
{ value: "_top", text: "Top" },
140140
],
141141
};
142142
},

0 commit comments

Comments
 (0)