-
Type:
Bug
-
Resolution: Won't Fix
-
Priority:
Low
-
Component/s: Repository - LFS
-
None
-
3
-
Severity 3 - Minor
-
78
Issue Summary
When trying to delete an LFS file from Repository settings > Git LFS, when clicking on the (...) button, the dropdown will render outside of the screen;
Steps to Reproduce
- Start tracking files with LFS on your repository;
- Navigate to Repository settings > Git LFS;
- On one of the files, click on the (...) button;
Expected Results
The dropdown with the option to delete should be rendered inside the screen;
Actual Results
The dropdown gets rendered outside the screen. Also, when being able to click on the Delete file option, the pop-up looks to have its padding off-centered;
Workaround
There are currently two workarounds for this issue:
- It is possible to zoom in and out of the screen in order to be able to properly view the dropdown;
- LFS files can be deleted from the Bitbucket REST API
$ curl --user <username>:<password> -X DELETE https://api.bitbucket.org/internal/repositories/<WorkspaceID>/<Repo_name>/lfs/<LFS-oid>The <LFS-oid> can be fetched from the local repository using this command
$ git lfs ls-files --all --long