-
Notifications
You must be signed in to change notification settings - Fork 3
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
Make Object / Version dates more accurate #133
Conversation
bb4c806
to
d519504
Compare
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.
Please double check to make sure linting warnings are being resolved. Looks pretty good at semantic level otherwise.
@@ -14,6 +14,7 @@ import type { Metadata } from '@/types'; | |||
|
|||
// Props | |||
type Props = { | |||
bucketId: string | undefined ; |
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.
I believe this can be changed to optional attribute instead of explicit undefined typing:
bucketId?: string;
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.
i forget why but using bucketId?: string;
shows a linting error
1158a83
to
8225af6
Compare
no longer show version-specific created/updated by/dates for each version.
show incrementing version number await user search when showing created by details show createdAt or updatedAt depending on bucket versioning
Description
ticket: https://apps.nrs.gov.bc.ca/int/jira/browse/SHOWCASE-3347
and a mix of other minor changes:
Types of changes
Checklist
Further comments