diff options
author | silverwind <me@silverwind.io> | 2023-04-24 08:48:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 02:48:43 -0400 |
commit | a319da0688763df662f5ef71684c8e9101803dbb (patch) | |
tree | 82f8521143902e8fcf328b7ac87e87ba946ff5da /templates/repo/settings | |
parent | cc8874864ca44ec013e132ebcb80b40878010d12 (diff) | |
download | gitea-a319da0688763df662f5ef71684c8e9101803dbb.tar.gz gitea-a319da0688763df662f5ef71684c8e9101803dbb.zip |
Replace whitespace inside template parens during make fmt (#24293)
Remove space/tab after `(` and before `)` in templates. Only two
violations it seems.
Diffstat (limited to 'templates/repo/settings')
-rw-r--r-- | templates/repo/settings/collaboration.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/settings/collaboration.tmpl b/templates/repo/settings/collaboration.tmpl index 6b1fcf194a..82696612f8 100644 --- a/templates/repo/settings/collaboration.tmpl +++ b/templates/repo/settings/collaboration.tmpl @@ -52,7 +52,7 @@ <h4 class="ui top attached header"> {{$.locale.Tr "repo.settings.teams"}} </h4> - {{$allowedToChangeTeams := ( or (.Org.RepoAdminChangeTeamAccess) (.Permission.IsOwner))}} + {{$allowedToChangeTeams := (or (.Org.RepoAdminChangeTeamAccess) (.Permission.IsOwner))}} {{if .Teams}} <div class="ui attached segment collaborator list"> {{range $t, $team := .Teams}} |