github_search icon indicating copy to clipboard operation
github_search copied to clipboard

repo field is bytes type

Open jason3130 opened this issue 4 years ago • 0 comments

repo field is bytes type so cast to str update before: QQ截图20210119120009

      <tr>
                    <td><a href="{{repo}}" target='_blank'>{{repo}}</a></td>

                    <td>{{desc.repo_desc}}</td>
                    <td>{{desc.star}}</td>
                    <td><input type="checkbox" class="del-repo" data={{repo}}></td>
                </tr>

update after: ![QQ截图20210119115707](https://user-images.githubusercontent.com/3123867/104986210-88db7f00-5a4d-11eb-91d1-f9a649ccaa9d.png QQ截图20210119115707 )

  <tr>
                    <td><a href="{{repo.decode('utf-8')}}" target='_blank'>{{ repo.decode('utf-8')}}</a></td>

                    <td>{{desc.repo_desc}}</td>
                    <td>{{desc.star}}</td>
                    <td><input type="checkbox" class="del-repo" data={{repo.decode('utf-8')}}></td>
                </tr>

jason3130 avatar Jan 19 '21 04:01 jason3130