Skip to content

Commit

Permalink
fix(service-portal): signature collection paper signees tweak (#16108)
Browse files Browse the repository at this point in the history
* fix(service-portal): signature collection paper signees tweak

* module name tweak sp

---------

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
albinagu and kodiakhq[bot] authored Sep 23, 2024
1 parent 5019df2 commit f4ab138
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/service-portal/signature-collection/src/module.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const signatureCollectionModule: PortalModule = {
element: <SignatureListsParliamentary />,
},
{
name: m.signatureCollectionPresidentialLists,
name: m.signatureCollectionParliamentaryLists,
path: SignatureCollectionPaths.ViewParliamentaryList,
enabled: userInfo.scopes.includes(ApiScope.signatureCollection),
key: 'ParliamentaryLists',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export const PaperSignees = ({
}}
error={nationalIdTypo ? ' ' : undefined}
loading={loading || loadingCanSign}
icon={canSign ? 'checkmark' : undefined}
icon={name && canSign ? 'checkmark' : undefined}
/>
</GridColumn>
<GridColumn span={['5/12', '4/12']}>
Expand Down Expand Up @@ -156,7 +156,7 @@ export const PaperSignees = ({
<Button
variant="ghost"
size="small"
disabled={!canSign}
disabled={!canSign || !page}
onClick={() => upload()}
loading={uploadingPaperSignature}
>
Expand Down

0 comments on commit f4ab138

Please sign in to comment.