Skip to content

Commit

Permalink
Merge pull request #22 from scottstraughan/misc-improvements
Browse files Browse the repository at this point in the history
Misc Improvements
  • Loading branch information
scottstraughan authored Jan 10, 2025
2 parents 0336566 + a2701c0 commit 0b4654a
Show file tree
Hide file tree
Showing 13 changed files with 355 additions and 107 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
.score {
display: flex;

osd-score-ring {
osd-score-ring,
osd-loading {
width: 40px;
height: 40px;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,21 @@
[icon]="getIcon('sort')"
[label]="getSortLabel()"
(clicked)="onToggleSortMode()"></osd-button>
<osd-button
[icon]="getIcon('visibility')"
(clicked)="onToggleVisibility()"></osd-button>
<osd-multi-toggle-button
[items]="[{
id: LayoutVisibility.HIDE_NO_SCORECARD_REPOS,
name: 'Hide Repositories Missing Scorecards',
icon: 'score',
active: hideNoScorecardRepos()
},
{
id: LayoutVisibility.HIDE_ARCHIVED_REPOS,
name: 'Hide Locked/Read-Only Repositories',
icon: 'lock',
active: hideArchivedRepos()
}]"
(itemChange)="onVisibleItemsChanged($event)"
></osd-multi-toggle-button>
<osd-button
[icon]="getIcon('layout')"
(clicked)="onToggleLayout()"></osd-button>
Expand Down
Loading

0 comments on commit 0b4654a

Please sign in to comment.