-
Notifications
You must be signed in to change notification settings - Fork 655
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix login modal not shown and "Show More" and capitalize string #711
Conversation
Current coverage is 67.51% (diff: 100%)@@ vue2 #711 diff @@
==========================================
Files 136 136
Lines 5131 5131
Methods 280 280
Messages 0 0
Branches 601 601
==========================================
Hits 3464 3464
Misses 1607 1607
Partials 60 60
|
@@ -307,6 +307,7 @@ | |||
border-radius: 40px | |||
font-size: 0.875em | |||
display: inline-block | |||
text-transform: capitalize; |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
@@ -2,13 +2,13 @@ | |||
|
|||
<!--TODO: VUE2 UNTESTED --> | |||
<div> | |||
<nav-bar-item v-if="loggedIn" tabindex="0" @click="toggleDropdown" @keyup.enter="toggleDropdown"> | |||
<nav-bar-item v-if="loggedIn" tabindex="0" @click.native="toggleDropdown" @keyup.enter="toggleDropdown"> |
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
This comment was marked as spam.
Sorry, something went wrong.
vue2's new characteristic about how to handle click event, see here for detail vuejs/vue#3253
Also vue2 does not support template filters anymore, details see here vuejs/vue#2756
but for capitalizing string, we should use css solution instead.