diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index 012bbc971..647c46b5a 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -332,10 +332,9 @@ uname_holder = Username or Email address password_holder = Password switch_dashboard_context = Switch Dashboard Context my_repos = Repositories +my_orgs = Organizations show_more_repos = Show more repositories… collaborative_repos = Collaborative Repositories -my_orgs = My Organizations -my_mirrors = My Mirrors view_home = View %s search_repos = Find a repository… filter = Other Filters diff --git a/templates/user/dashboard/repolist.tmpl b/templates/user/dashboard/repolist.tmpl index ed6f90682..0a8c0a2e0 100644 --- a/templates/user/dashboard/repolist.tmpl +++ b/templates/user/dashboard/repolist.tmpl @@ -5,10 +5,7 @@ const data = { isMirrorsEnabled: {{.MirrorsEnabled}}, isStarsEnabled: {{not .IsDisableStars}}, - textRepository: {{ctx.Locale.Tr "repository"}}, - textOrganization: {{ctx.Locale.Tr "organization"}}, textMyRepos: {{ctx.Locale.Tr "home.my_repos"}}, - textNewRepo: {{ctx.Locale.Tr "new_repo"}}, textSearchRepos: {{ctx.Locale.Tr "home.search_repos"}}, textFilter: {{ctx.Locale.Tr "home.filter"}}, textShowArchived: {{ctx.Locale.Tr "home.show_archived"}}, @@ -34,7 +31,6 @@ const data = { textLastPage: {{ctx.Locale.Tr "admin.last_page"}}, textMyOrgs: {{ctx.Locale.Tr "home.my_orgs"}}, - textNewOrg: {{ctx.Locale.Tr "new_org"}}, textOrgVisibilityLimited: {{ctx.Locale.Tr "org.settings.visibility.limited_shortname"}}, textOrgVisibilityPrivate: {{ctx.Locale.Tr "org.settings.visibility.private_shortname"}}, diff --git a/web_src/css/dashboard.css b/web_src/css/dashboard.css index 51ddd45e3..57ddb80bc 100644 --- a/web_src/css/dashboard.css +++ b/web_src/css/dashboard.css @@ -82,6 +82,14 @@ padding-right: 0.5rem; } +.dashboard .dashboard-navbar .right.menu { + gap: .35714286em; +} + +.dashboard .dashboard-navbar .right.menu div.item { + padding-left: 0.5rem; +} + .dashboard .dashboard-navbar .org-visibility .label { margin-left: 5px; } diff --git a/web_src/js/components/DashboardRepoList.vue b/web_src/js/components/DashboardRepoList.vue index 29f278d8a..d6b7d6c96 100644 --- a/web_src/js/components/DashboardRepoList.vue +++ b/web_src/js/components/DashboardRepoList.vue @@ -340,21 +340,18 @@ export default sfc; // activate the IDE's Vue plugin