diff options
author | Lauris BH <lauris@nix.lv> | 2017-07-15 17:22:26 +0300 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-07-15 22:22:26 +0800 |
commit | 047a67a90b455a077e8b6f6deaad6b7ec4b50810 (patch) | |
tree | 54ab9c38273dfce4294fa6f4b681b62ce24bb81d /templates/user/dashboard | |
parent | 0b177574c92b2f8c4a4d0d9de01ff1bf5eda06a2 (diff) | |
download | gitea-047a67a90b455a077e8b6f6deaad6b7ec4b50810.tar.gz gitea-047a67a90b455a077e8b6f6deaad6b7ec4b50810.zip |
Refactor vue delimeters to use es6 template delimeters (#2171)
Diffstat (limited to 'templates/user/dashboard')
-rw-r--r-- | templates/user/dashboard/dashboard.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl index 7a444c17d2..48d6966e18 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -33,9 +33,9 @@ <li v-for="repo in repos" :class="{'private': repo.private}"> <a :href="'{{AppSubUrl}}/' + repo.full_name"> <i :class="repoClass(repo)"></i> - <strong class="text truncate item-name"><% repo.full_name %></strong> + <strong class="text truncate item-name">${ repo.full_name }</strong> <span class="ui right text light grey"> - <% repo.stars_count %> <i class="octicon octicon-star rear"></i> + ${ repo.stars_count } <i class="octicon octicon-star rear"></i> </span> </a> </li> |