_/Velog

[Github] 깃허브 Organization에서 Repository 핀이 안 될 때 해결방법

선달 2024. 4. 9. 16:29
반응형

 

Github Organization에 특정 레포지토리를 고정하지 않으면

이렇게 기본 화면이 뜨고 Popular Repositories가 대신 뜬다

아무것도 핀하지 않은 초기 상태에서는 Customize Repository 버튼도 안보인다

 

 

맨처음에 Repo를 핀하려면 오른쪽에서 파랑색으로 된 pin repositories를 누르면 되는데,,

분명 레포를 다 선택했음에도 Save Pins버튼이 활성화 되지 않아 눌리지 않는다

레포 핀이 안된다 (??)

 

상당히 황당하지만 깃허브상의 오류라고한다

 

https://github.com/orgs/community/discussions/84168

 

[Edit pinned items] save pins button always disabled · community · Discussion #84168

Select Topic Area Question Body I'm trying to update my GitHub profile by pinning 6 representative repositories. To make changes, I unchecked one of the existing pins and checked a new one. However...

github.com

 

해결은 어떻게 하나요

 

설마 이게 될까? 싶었지만

개발자 도구를 통해 소스코드를 조작해서 레포지토리 고정을 할 수 있었다ㅋㅋ

F12를 누르고 Save Pins에 해당하는 초록색 버튼을 선택한 뒤

 

 

그 버튼에 해당하는 속성에서 disabled를 없애면 깔끔하게 잘 된다 :)

 

Before

<button form="pinned-items-update-form" type="submit" disabled="disabled" data-view-component="true" class="js-pinned-items-submit Button--primary Button--medium Button">  <span class="Button-content">
    <span class="Button-label">Save pins</span>
  </span>
</button>

 

After

<button form="pinned-items-update-form" type="submit" data-view-component="true" class="js-pinned-items-submit Button--primary Button--medium Button">  <span class="Button-content">
    <span class="Button-label">Save pins</span>
  </span>
</button>

 

 

 

반응형