首頁 >web前端 >js教程 >TIL 如何使用 JS 查看 GitLab 上的整個提交列

TIL 如何使用 JS 查看 GitLab 上的整個提交列

DDD
DDD原創
2024-11-28 22:21:11484瀏覽

這是很久以前的事了,但我將其添加到這裡作為自我註釋。

每當你打開 CI/CD >在 GitLab 上的 Pipelines 你可能經常會看到這樣的東西:

TIL how to see the entire commit column on GitLab using JS

您可以透過在瀏覽器上開啟開發控制台並更改一些 CSS 來修復樣式來查看整個內容。您也可以查看整個列的另一種方法是建立一個新書籤(在任何頁面上,這並不重要),然後將 URL 編輯為:

javascript:(function(){var e=document.querySelectorAll('a.commit-sha.mr-0');for(var t=0;t<e.length;t++){e[t].parentNode.removeChild(e[t]);}var n=document.querySelectorAll('div.container-limited');if(n.length>0){n[0].style.maxWidth='2400px';}var r=document.querySelectorAll('a.ref-name');for(var t=0;t<r.length;t++){r[t].style.overflow='unset';}})();

TIL how to see the entire commit column on GitLab using JS

因此,當您單擊它時,表格將調整大小,如下所示:

TIL how to see the entire commit column on GitLab using JS

TIL how to see the entire commit column on GitLab using JS

以上是TIL 如何使用 JS 查看 GitLab 上的整個提交列的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn