-
Notifications
You must be signed in to change notification settings - Fork 202
feat(web): Added Trigger Sync to /repos dropdown menu #710
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat(web): Added Trigger Sync to /repos dropdown menu #710
Conversation
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
brendan-kellam
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for the PR! left a few comments but overall lgtm 👍
…rl block - Moved the whole repo actions dropdown to its own component (repoActionsDropdown.tsx)
| currentSortBy?: string; | ||
| currentSortOrder: string; | ||
| onTriggerSync: (repoId: number) => void; | ||
| syncingRepoId: number | null; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
syncingRepoId is now unused
| const [rowSelection, setRowSelection] = useState({}) | ||
| const [searchValue, setSearchValue] = useState(initialSearch) | ||
| const [isPendingSearch, setIsPendingSearch] = useState(false) | ||
| const [syncingRepoId, setSyncingRepoId] = useState<number | null>(null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
syncingRepoId is now unused
Added Trigger Sync to /repos dropdown menu
Implements #709

Here is what it looks like