fix: useSigitProfiles dep, map item keys warnining, sign button styles, placeholder, optional button label #160
No reviewers
Labels
No Label
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No Milestone
No project
No Assignees
3 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: sigit/sigit.io#160
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "fix-collection-21-8"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -42,3 +44,3 @@
</div>
<Button variant="contained" fullWidth onClick={handleDownload}>
Download Files
{downloadLabel ? downloadLabel : 'Download Files'}
You can probably use the
??
operator. ShouldDownload Files
be a constant?||
(logical OR) should be used instead of??
(Nullish Coalescing).With
??
if downloadLabel is blank string it will return blank but with||
we will get default valueDownload Files