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

feat(ui-fields): update table repeater #14962

Merged
merged 14 commits into from
May 28, 2024
Merged

Conversation

karenbjorg
Copy link
Member

@karenbjorg karenbjorg commented May 27, 2024

What

Add edit button to a table row in table repeater component

Why

To be able to edit content of a table row instead of needing to delete and add again.
Edit button is optional and is set using editField: true. Hover text can be changes using editButtonTooltipText

Screenshots / Gifs

Screenshot 2024-05-27 at 21 51 56 Screenshot 2024-05-27 at 21 52 31

Checklist:

  • I have performed a self-review of my own code
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • Formatting passes locally with my changes
  • I have rebased against main before asking for a review

Summary by CodeRabbit

  • New Features

    • Added the ability to edit and update items within the TableRepeaterFormField component.
    • Introduced tooltips for edit and update buttons to enhance user experience.
  • Improvements

    • Enhanced the TableRepeaterFormField component with new props for better customization and functionality.

@karenbjorg karenbjorg requested a review from a team as a code owner May 27, 2024 22:08
Copy link
Contributor

coderabbitai bot commented May 27, 2024

Walkthrough

The changes introduce new functionalities to the buildTableRepeaterField function and the TableRepeaterFormField component, adding support for edit and update button tooltips and fields. Additionally, new message definitions for these functionalities are added, and the TableRepeaterField type is updated accordingly. These enhancements aim to improve the user experience by providing more interactive and informative elements within the table repeater fields.

Changes

File Path Change Summary
libs/application/core/src/lib/fieldBuilders.ts Added editButtonTooltipText, editField, updateButtonTooltipText, and updateFields to the buildTableRepeaterField function parameters and destructuring assignment.
libs/application/core/src/lib/messages.ts Introduced new message definitions for updateFieldText and editFieldText with IDs, default messages, and descriptions.
libs/application/types/src/lib/Fields.ts Updated TableRepeaterField type to include updateButtonTooltipText, updateFields, editButtonTooltipText, and editField as new properties.
libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx Added updateFields and editField boolean props, updateButtonTooltipText and editButtonTooltipText string props. Introduced handleChangeItem and handleEditItem functions, and modified the component to conditionally render update and edit buttons.

Sequence Diagram(s) (Beta)

sequenceDiagram
    participant User
    participant TableRepeaterFormField
    participant FieldBuilder
    participant Messages

    User->>TableRepeaterFormField: Interacts with Edit/Update Button
    TableRepeaterFormField->>FieldBuilder: Calls buildTableRepeaterField with new props
    FieldBuilder->>Messages: Retrieves edit/update button tooltip text
    Messages-->>FieldBuilder: Returns tooltip text
    FieldBuilder-->>TableRepeaterFormField: Returns configured field
    TableRepeaterFormField-->>User: Renders updated field with tooltips
Loading

Tip

Early Access Features
  • gpt-4o model for chat

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to full the review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Outside diff range and nitpick comments (6)
libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (4)

Line range hint 147-147: Use self-closing tags for JSX elements without children.

- <T.HeadData></T.HeadData>
+ <T.HeadData />

Line range hint 156-166: Consider using optional chaining for better safety.

- staticData &&
-   staticData.map((item, index) => (
+ staticData?.map((item, index) => (

This change ensures that the map function is called only if staticData is not null or undefined, preventing potential runtime errors.


Line range hint 159-159: Use self-closing tags for JSX elements without children.

- <T.Data></T.Data>
+ <T.Data />

Line range hint 266-266: Prefer template literals over string concatenation.

- id + 'title'
+ `${id}title`

This change makes the code cleaner and more consistent with modern JavaScript practices.

libs/application/types/src/lib/Fields.ts (1)

Line range hint 320-320: Specify a more appropriate type instead of any.

Consider replacing any with a more specific type to improve type safety and maintainability of the code.

Also applies to: 334-334

libs/application/core/src/lib/messages.ts (1)

Line range hint 782-783: Replace unnecessary template literals with regular strings for better performance and readability.

- defaultMessage: `* Umsóknartegund hefur ekki verið skilgreind\n`,
+ defaultMessage: '* Umsóknartegund hefur ekki verið skilgreind\n',

- defaultMessage: `* Þú ert ekki með aðgang að umsókninni\n* Umsóknin er full kláruð`,
+ defaultMessage: '* Þú ert ekki með aðgang að umsókninni\n* Umsóknin er full kláruð',

- defaultMessage: `* Það gæti verið stafsetningarvilla í umsóknarnafni\n* Umsóknin gæti verið óaðgengileg\n* Umsóknartegund gæti hafa verið eytt\n* Umsóknartegund gæti verið ógild`,
+ defaultMessage: '* Það gæti verið stafsetningarvilla í umsóknarnafni\n* Umsóknin gæti verið óaðgengileg\n* Umsóknartegund gæti hafa verið eytt\n* Umsóknartegund gæti verið ógild',

- defaultMessage: `* Þú ert ekki með aðgang að umsókninni\n* Umsóknin gæti verið eytt\n* Umsóknin er í eigu annars notanda`,
+ defaultMessage: '* Þú ert ekki með aðgang að umsókninni\n* Umsóknin gæti verið eytt\n* Umsóknin er í eigu annars notanda',

- defaultMessage: `* Þú hefur ekki rétt umboð til að opna þessa umsóknartegund`,
+ defaultMessage: '* Þú hefur ekki rétt umboð til að opna þessa umsóknartegund',

- defaultMessage: `* Umsókn hefur verið fjarlægð\n* Umsókn rann út á tíma\n`,
+ defaultMessage: '* Umsókn hefur verið fjarlægð\n* Umsókn rann út á tíma\n',

Also applies to: 799-799, 810-814, 831-834, 852-853, 874-875

Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between 7a34f0e and e7a201a.
Files selected for processing (4)
  • libs/application/core/src/lib/fieldBuilders.ts (2 hunks)
  • libs/application/core/src/lib/messages.ts (1 hunks)
  • libs/application/types/src/lib/Fields.ts (1 hunks)
  • libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (4 hunks)
Additional Context Used
Biome (32)
libs/application/core/src/lib/fieldBuilders.ts (3)

1-44: Some named imports are only used as types.


45-46: All these imports are only used as types.


46-47: All these imports are only used as types.

libs/application/core/src/lib/messages.ts (6)

782-783: Do not use template literals if interpolation and special-character handling are not needed.


799-799: Do not use template literals if interpolation and special-character handling are not needed.


810-814: Do not use template literals if interpolation and special-character handling are not needed.


831-834: Do not use template literals if interpolation and special-character handling are not needed.


852-853: Do not use template literals if interpolation and special-character handling are not needed.


874-875: Do not use template literals if interpolation and special-character handling are not needed.

libs/application/types/src/lib/Fields.ts (13)

320-320: Unexpected any. Specify a different type.


334-334: Unexpected any. Specify a different type.


10-11: All these imports are only used as types.


11-12: All these imports are only used as types.


12-13: All these imports are only used as types.


13-14: All these imports are only used as types.


14-15: All these imports are only used as types.


15-16: All these imports are only used as types.


16-17: All these imports are only used as types.


17-18: All these imports are only used as types.


18-19: All these imports are only used as types.


19-20: All these imports are only used as types.


20-21: All these imports are only used as types.

libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (10)

147-147: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.


156-166: Change to an optional chain.


159-159: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.


266-266: Template literals are preferred over string concatenation.


1-5: All these imports are only used as types.


26-27: Some named imports are only used as types.


149-149: Avoid using the index of an array as key property in an element.


158-158: Avoid using the index of an array as key property in an element.


161-161: Avoid using the index of an array as key property in an element.


216-216: Avoid using the index of an array as key property in an element.

Path-based Instructions (4)
libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/types/src/lib/Fields.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/core/src/lib/fieldBuilders.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/core/src/lib/messages.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
Additional comments not posted (6)
libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (3)

61-62: Ensure default values align with expected behavior.

The default values for updateButtonTooltipText and updateFields are set appropriately according to the PR description.


108-111: Ensure handleChangeItem is robust and handles all edge cases.

The function handleChangeItem is simple and correctly sets the active index for editing a row. Ensure it handles all edge cases, especially with asynchronous data updates.


191-212: Review the conditional rendering logic for the update button.

The conditional rendering of the update button based on the updateFields prop is implemented correctly. The tooltip is also appropriately set using updateButtonTooltipText.

libs/application/types/src/lib/Fields.ts (1)

503-504: Ensure new properties are optional in interfaces.

The optional chaining for updateButtonTooltipText and updateFields in TableRepeaterField is correctly implemented, making these properties optional and aligning with the PR description.

libs/application/core/src/lib/fieldBuilders.ts (1)

Line range hint 745-765: Review the implementation of buildTableRepeaterField.

The function buildTableRepeaterField correctly integrates the new properties updateButtonTooltipText and updateFields. This aligns with the PR objectives and enhances the functionality of the table repeater fields.

libs/application/core/src/lib/messages.ts (1)

223-227: The addition of the updateFieldText message is correctly implemented and aligns with the existing message structure.

Copy link

codecov bot commented May 27, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 37.16%. Comparing base (a0a4138) to head (08a1770).

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main   #14962      +/-   ##
==========================================
+ Coverage   37.13%   37.16%   +0.03%     
==========================================
  Files        6373     6374       +1     
  Lines      129705   129780      +75     
  Branches    36998    37041      +43     
==========================================
+ Hits        48163    48236      +73     
- Misses      81542    81544       +2     
Flag Coverage Δ
air-discount-scheme-backend 53.75% <ø> (ø)
air-discount-scheme-web 0.00% <ø> (ø)
api 3.46% <ø> (ø)
api-domains-air-discount-scheme 35.89% <ø> (+0.03%) ⬆️
api-domains-assets 26.71% <ø> (ø)
api-domains-auth-admin 57.91% <ø> (ø)
api-domains-communications 40.57% <ø> (+<0.01%) ⬆️
api-domains-driving-license 44.28% <ø> (+0.01%) ⬆️
api-domains-education 33.54% <ø> (+0.03%) ⬆️
api-domains-mortgage-certificate 34.81% <ø> (+0.03%) ⬆️
api-domains-payment-schedule 40.26% <ø> (+0.03%) ⬆️
application-templates-driving-license 16.47% <ø> (ø)
application-templates-estate 11.75% <ø> (ø)
application-templates-example-payment 20.49% <ø> (ø)
application-templates-financial-aid 11.94% <ø> (ø)
application-templates-general-petition 19.14% <ø> (ø)
clients-driving-license 40.15% <ø> (+0.04%) ⬆️
clients-driving-license-book 43.63% <ø> (+0.03%) ⬆️
license-api 43.01% <ø> (+0.01%) ⬆️
services-auth-admin-api 52.00% <ø> (+<0.01%) ⬆️
services-auth-delegation-api 61.79% <ø> (+<0.01%) ⬆️
services-auth-ids-api 54.61% <ø> (+0.49%) ⬆️
services-endorsements-api 55.20% <ø> (+0.01%) ⬆️
services-sessions 65.30% <ø> (+0.01%) ⬆️
services-university-gateway 48.38% <ø> (+0.10%) ⬆️
services-user-notification 47.58% <ø> (+<0.01%) ⬆️
services-user-profile 62.65% <ø> (-0.07%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files Coverage Δ
libs/application/core/src/lib/fieldBuilders.ts 37.01% <ø> (ø)
libs/application/core/src/lib/messages.ts 100.00% <ø> (ø)
libs/application/types/src/lib/Fields.ts 100.00% <ø> (ø)
.../TableRepeaterFormField/TableRepeaterFormField.tsx 2.27% <ø> (ø)

... and 67 files with indirect coverage changes


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update a0a4138...08a1770. Read the comment docs.

@datadog-island-is
Copy link

datadog-island-is bot commented May 27, 2024

Datadog Report

All test runs 42bad92 🔗

9 Total Test Services: 0 Failed, 9 Passed
➡️ Test Sessions change in coverage: 18 no change

Test Services
Service Name Failed Known Flaky New Flaky Passed Skipped Total Time Code Coverage Change Test Service View
api 0 0 0 4 0 4.16s 1 no change Link
application-system-api 0 0 0 111 2 3m 9.32s 1 no change Link
application-template-api-modules 0 0 0 109 0 2m 19.72s 1 no change Link
application-ui-shell 0 0 0 74 0 1m 2.37s 1 no change Link
clients-regulations 0 0 0 1 0 10.94s 1 no change Link
download-service 0 0 0 1 0 23.73s 1 no change Link
portals-admin-regulations-admin 0 0 0 24 0 13.78s 1 no change Link
regulations 0 0 0 1 0 6.69s 1 no change Link
web 0 0 0 84 0 29.59s 1 no change Link

@karenbjorg karenbjorg added the deprecated:automerge (Disabled) Merge this PR as soon as all checks pass label May 27, 2024
Copy link
Member

@Toti91 Toti91 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice!

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Outside diff range and nitpick comments (5)
libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (4)

61-62: The default values for editButtonTooltipText and editField are well-integrated with the existing structure. However, consider adding a comment to explain why editField defaults to false, as it might not be immediately clear to other developers.


Line range hint 147-147: JSX elements without children should be self-closing to improve readability and adhere to best practices.

- <T.HeadData></T.HeadData>
+ <T.HeadData />
- <T.Data></T.Data>
+ <T.Data />

Also applies to: 159-159


Line range hint 156-166: Consider using optional chaining to safely access properties on potentially undefined objects.

- {staticData && staticData.map((item, index) => (
+ {staticData?.map((item, index) => (

Line range hint 266-266: Prefer template literals over string concatenation for better readability and consistency.

- id + 'title'
+ `${id}title`
libs/application/core/src/lib/messages.ts (1)

Line range hint 782-783: Consider replacing template literals with regular strings where interpolation and special-character handling are not needed. This can improve performance slightly and reduce complexity.

- defaultMessage: `* Þú ert ekki með aðgang að umsókninni\n* Umsóknin gæti verið eytt\n* Umsóknin er í eigu annars notanda`,
+ defaultMessage: '* Þú ert ekki með aðgang að umsókninni\n* Umsóknin gæti verið eytt\n* Umsóknin er í eigu annars notanda',

Apply similar changes to other lines mentioned in the static analysis hints.

Also applies to: 799-799, 810-814, 831-834, 852-853, 874-875

Review Details

Configuration used: .coderabbit.yaml
Review profile: CHILL

Commits Files that changed from the base of the PR and between e7a201a and 7ea9b74.
Files selected for processing (4)
  • libs/application/core/src/lib/fieldBuilders.ts (2 hunks)
  • libs/application/core/src/lib/messages.ts (1 hunks)
  • libs/application/types/src/lib/Fields.ts (1 hunks)
  • libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (4 hunks)
Additional Context Used
Biome (32)
libs/application/core/src/lib/fieldBuilders.ts (3)

1-44: Some named imports are only used as types.


45-46: All these imports are only used as types.


46-47: All these imports are only used as types.

libs/application/core/src/lib/messages.ts (6)

782-783: Do not use template literals if interpolation and special-character handling are not needed.


799-799: Do not use template literals if interpolation and special-character handling are not needed.


810-814: Do not use template literals if interpolation and special-character handling are not needed.


831-834: Do not use template literals if interpolation and special-character handling are not needed.


852-853: Do not use template literals if interpolation and special-character handling are not needed.


874-875: Do not use template literals if interpolation and special-character handling are not needed.

libs/application/types/src/lib/Fields.ts (13)

320-320: Unexpected any. Specify a different type.


334-334: Unexpected any. Specify a different type.


10-11: All these imports are only used as types.


11-12: All these imports are only used as types.


12-13: All these imports are only used as types.


13-14: All these imports are only used as types.


14-15: All these imports are only used as types.


15-16: All these imports are only used as types.


16-17: All these imports are only used as types.


17-18: All these imports are only used as types.


18-19: All these imports are only used as types.


19-20: All these imports are only used as types.


20-21: All these imports are only used as types.

libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (10)

147-147: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.


156-166: Change to an optional chain.


159-159: JSX elements without children should be marked as self-closing. In JSX, it is valid for any element to be self-closing.


266-266: Template literals are preferred over string concatenation.


1-5: All these imports are only used as types.


26-27: Some named imports are only used as types.


149-149: Avoid using the index of an array as key property in an element.


158-158: Avoid using the index of an array as key property in an element.


161-161: Avoid using the index of an array as key property in an element.


216-216: Avoid using the index of an array as key property in an element.

Path-based Instructions (4)
libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/types/src/lib/Fields.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/core/src/lib/fieldBuilders.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
libs/application/core/src/lib/messages.ts (1)

Pattern libs/**/*: "Confirm that the code adheres to the following:

  • Reusability of components and hooks across different NextJS apps.
  • TypeScript usage for defining props and exporting types.
  • Effective tree-shaking and bundling practices."
Additional comments not posted (4)
libs/application/ui-fields/src/lib/TableRepeaterFormField/TableRepeaterFormField.tsx (1)

108-110: The handleEditItem function is concise and clear. It effectively sets the active index for editing. Ensure that the index handling is robust against possible out-of-bound errors.

libs/application/types/src/lib/Fields.ts (1)

503-504: The addition of editButtonTooltipText and editField properties to TableRepeaterField aligns with the new functionality. Ensure that these properties are documented in the type definition to help developers understand their usage.

libs/application/core/src/lib/fieldBuilders.ts (1)

Line range hint 745-765: The buildTableRepeaterField function has been updated to include parameters for editing functionality. This is a crucial update for the feature. Ensure that all new parameters are used appropriately within the function and that their interactions with existing parameters are tested.

libs/application/core/src/lib/messages.ts (1)

223-227: The new message definitions for editFieldText are correctly implemented and follow the existing pattern in the file.

@veronikasif veronikasif added deprecated:automerge (Disabled) Merge this PR as soon as all checks pass and removed deprecated:automerge (Disabled) Merge this PR as soon as all checks pass labels May 28, 2024
@kodiakhq kodiakhq bot merged commit 0d51495 into main May 28, 2024
173 checks passed
@kodiakhq kodiakhq bot deleted the feat/update-table-repeater branch May 28, 2024 17:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
deprecated:automerge (Disabled) Merge this PR as soon as all checks pass
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants