Skip to content

Commit dac7a4b

Browse files
author
Guillaume Chau
committedApr 8, 2019
fix(project manager): make open in editor button more discoverable
1 parent 3479f21 commit dac7a4b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎packages/@vue/cli-ui/src/components/project-manager/ProjectSelectListItem.vue

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@
2727
</div>
2828

2929
<div class="actions">
30+
<VueButton
31+
icon-left="open_in_browser"
32+
@click.stop="openInEditor()"
33+
>
34+
{{ $t('org.vue.components.project-select-list-item.tooltips.open-in-editor') }}
35+
</VueButton>
36+
3037
<VueButton
3138
v-if="project.homepage"
3239
:href="project.homepage"
@@ -37,13 +44,6 @@
3744
@click.stop
3845
/>
3946

40-
<VueButton
41-
class="icon-button"
42-
icon-left="open_in_browser"
43-
v-tooltip="$t('org.vue.components.project-select-list-item.tooltips.open-in-editor')"
44-
@click.stop="openInEditor()"
45-
/>
46-
4747
<VueButton
4848
class="icon-button"
4949
icon-left="close"

0 commit comments

Comments
 (0)
Please sign in to comment.