diff options
author | André Jaenisch <Ryuno-Ki@users.noreply.github.com> | 2022-10-01 16:26:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-01 16:26:38 +0200 |
commit | 04e97b83115e7439d43c0ede5fe2d1b50d201c52 (patch) | |
tree | 073a20e9377c5197112327afd11d7a6f2cccb268 /templates/user/dashboard/repolist.tmpl | |
parent | Update Golang deps (#21304) (diff) | |
download | forgejo-04e97b83115e7439d43c0ede5fe2d1b50d201c52.tar.xz forgejo-04e97b83115e7439d43c0ede5fe2d1b50d201c52.zip |
Refactor from Vue2 to Vue3 (#20044)
Close #19902
Diffstat (limited to 'templates/user/dashboard/repolist.tmpl')
-rw-r--r-- | templates/user/dashboard/repolist.tmpl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/user/dashboard/repolist.tmpl b/templates/user/dashboard/repolist.tmpl index 3e9ff99692..620cc322f0 100644 --- a/templates/user/dashboard/repolist.tmpl +++ b/templates/user/dashboard/repolist.tmpl @@ -19,7 +19,10 @@ {{end}} inline-template v-cloak - > + ></repo-search> +</div> + +<template id="dashboard-repo-list-template"> <div> <div v-if="!isOrganization" class="ui two item tabable menu"> <a :class="{item: true, active: tab === 'repos'}" @click="changeTab('repos')">{{.locale.Tr "repository"}}</a> @@ -193,5 +196,4 @@ </div> </div> </div> -</repo-search> -</div> +</template> |