Skip to content

Commit

Permalink
fix: add correct dropdown label
Browse files Browse the repository at this point in the history
Closes #20
  • Loading branch information
gearsdigital committed Jul 6, 2020
1 parent 5242272 commit 1ef5aab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/components/EnhancedToolbarLinkDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ export default {
},
selectedLinkTarget: null,
linkTargets: [
{ value: "_blank", text: "_blank" },
{ value: "_self", text: "_blank" },
{ value: "_parent", text: "_parent" },
{ value: "_top", text: "_top" },
{ value: "_blank", text: "Blank" },
{ value: "_self", text: "Self" },
{ value: "_parent", text: "Parent" },
{ value: "_top", text: "Top" },
],
};
},
Expand Down

0 comments on commit 1ef5aab

Please sign in to comment.