Skip to content
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

Update pull requests labels #117

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/great-spies-behave.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'gov4git-desktop-app': patch
---

Update pull requests labels
2 changes: 1 addition & 1 deletion src/renderer/src/App/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const routes = {
},
pullRequests: {
path: '/changes',
name: 'Request for Changes',
name: 'Approval',
siteNav: true,
forAdmin: false,
iconClass: 'codicon-request-changes',
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/polls/Polls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const PollsPage: FC<PollsPageProps> = function PollsPage({ state }) {
switch (state) {
case 'PULL_REQUESTS':
setMotionsType('proposal')
setTitle('Prioritize Pull Requests')
setTitle('Decide on Pull Requests')
break
default:
setMotionsType('concern')
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/src/pages/polls/motions/Motions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const Motions: FC<MotionsProps> = function Motions({
<Text weight="bold" size={400}>
{motionType === 'concern'
? 'Prioritize Issues'
: 'Prioritize Pull Requests'}
: 'Decide on Pull Requests'}
</Text>
</BreadcrumbButton>
</MenuTrigger>
Expand All @@ -112,7 +112,7 @@ export const Motions: FC<MotionsProps> = function Motions({
<MenuItem
onClick={() => changePage(routes.pullRequests.path)}
>
Prioritize Pull Requests
Decide on Pull Requests
</MenuItem>
</MenuList>
</MenuPopover>
Expand Down
Loading