diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-08-28 03:26:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-28 03:26:23 +0200 |
commit | 67daa7bcb0cfd3cd7e5efa8667021a7e422f4bdf (patch) | |
tree | cbfbb668a6a3b9dff91e1df27818968701e13fff /templates/repo/clone_buttons.tmpl | |
parent | Expanded minimum RSA Keylength to 3072 (#26604) (diff) | |
download | forgejo-67daa7bcb0cfd3cd7e5efa8667021a7e422f4bdf.tar.xz forgejo-67daa7bcb0cfd3cd7e5efa8667021a7e422f4bdf.zip |
Remove some transition related code (#26755)
Remove transition related code because the transition module has been
removed by #26469
Diffstat (limited to 'templates/repo/clone_buttons.tmpl')
-rw-r--r-- | templates/repo/clone_buttons.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/repo/clone_buttons.tmpl b/templates/repo/clone_buttons.tmpl index 8f5b63128a..9f008ff5d2 100644 --- a/templates/repo/clone_buttons.tmpl +++ b/templates/repo/clone_buttons.tmpl @@ -1,11 +1,11 @@ <!-- there is always at least one button (by context/repo.go) --> {{if $.CloneButtonShowHTTPS}} - <button class="ui small compact clone button gt-no-transition" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}"> + <button class="ui small compact clone button" id="repo-clone-https" data-link="{{$.CloneButtonOriginLink.HTTPS}}"> HTTPS </button> {{end}} {{if $.CloneButtonShowSSH}} - <button class="ui small compact clone button gt-no-transition" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}"> + <button class="ui small compact clone button" id="repo-clone-ssh" data-link="{{$.CloneButtonOriginLink.SSH}}"> SSH </button> {{end}} |