Skip to content

Conversation

yifeiyin
Copy link
Contributor

@yifeiyin yifeiyin commented Jul 6, 2025

Also, the icons were not consistent (delete vs permanently delete), updated in a separate PR: #13051

Summary by CodeRabbit

  • New Features

    • Introduced a confirmation modal for permanent deletion of single or multiple items in the trash, with tailored titles and descriptions.
    • Added toast notifications to confirm successful permanent deletions.
    • Enabled permanent deletion actions for users with admin or owner permissions.
  • Localization

    • Added new translations for permanent deletion confirmation dialogs across multiple languages, including titles and descriptions for both single and multiple items.

Copy link
Contributor

coderabbitai bot commented Jul 6, 2025

Warning

Rate limit exceeded

@yifeiyin has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 2 minutes and 48 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between 6ca1741 and 55cca0d.

📒 Files selected for processing (19)
  • packages/frontend/core/src/desktop/pages/workspace/trash-page.tsx (4 hunks)
  • packages/frontend/i18n/src/i18n.gen.ts (1 hunks)
  • packages/frontend/i18n/src/resources/ar.json (1 hunks)
  • packages/frontend/i18n/src/resources/de.json (1 hunks)
  • packages/frontend/i18n/src/resources/el-GR.json (1 hunks)
  • packages/frontend/i18n/src/resources/en.json (1 hunks)
  • packages/frontend/i18n/src/resources/es.json (1 hunks)
  • packages/frontend/i18n/src/resources/fa.json (1 hunks)
  • packages/frontend/i18n/src/resources/fr.json (1 hunks)
  • packages/frontend/i18n/src/resources/it-IT.json (1 hunks)
  • packages/frontend/i18n/src/resources/ja.json (1 hunks)
  • packages/frontend/i18n/src/resources/ko.json (1 hunks)
  • packages/frontend/i18n/src/resources/pl.json (1 hunks)
  • packages/frontend/i18n/src/resources/pt-BR.json (1 hunks)
  • packages/frontend/i18n/src/resources/ru.json (1 hunks)
  • packages/frontend/i18n/src/resources/sv-SE.json (1 hunks)
  • packages/frontend/i18n/src/resources/uk.json (1 hunks)
  • packages/frontend/i18n/src/resources/zh-Hans.json (1 hunks)
  • packages/frontend/i18n/src/resources/zh-Hant.json (1 hunks)

Walkthrough

The changes introduce a new permanent deletion confirmation flow for single and multiple items in the trash page. This includes updating the UI to show confirmation modals with localized text for permanent deletion, modifying the trash page logic to handle bulk permanent deletions, and adding new translation keys and localized strings for multiple languages.

Changes

File(s) Change Summary
packages/frontend/core/src/desktop/pages/workspace/trash-page.tsx Added permanent deletion confirmation modal logic and bulk deletion handling to TrashPage; updated DocsExplorer handlers.
packages/frontend/i18n/src/i18n.gen.ts Added new translation key methods for permanent deletion confirmation modals.
packages/frontend/i18n/src/resources/ar.json
.../de.json
.../el-GR.json
.../en.json
.../es.json
.../fa.json
.../fr.json
.../it-IT.json
.../ja.json
.../ko.json
.../pl.json
.../pt-BR.json
.../ru.json
.../sv-SE.json
.../uk.json
.../zh-Hans.json
.../zh-Hant.json
Added localized strings for permanent deletion confirmation modals (single/multiple) in multiple languages.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant TrashPage
    participant ConfirmModal
    participant DocsExplorer
    participant BlockSuiteMetaHelper

    User->>DocsExplorer: Select one or more items
    User->>DocsExplorer: Click "Delete Permanently"
    DocsExplorer->>TrashPage: Trigger onDelete handler with selected IDs
    TrashPage->>ConfirmModal: Show confirmation modal (single/multiple)
    ConfirmModal-->>TrashPage: User confirms deletion
    TrashPage->>BlockSuiteMetaHelper: Call permanentlyDeletePage for each ID
    BlockSuiteMetaHelper-->>TrashPage: Deletion complete
    TrashPage->>User: Show success toast
Loading

Assessment against linked issues

Objective Addressed Explanation
Enable permanent deletion of all items in trash at once (#12869)
Show confirmation modal before permanent deletion (single/multiple) (#12869)
Provide localized confirmation messages for permanent deletion (#12869)

Possibly related PRs

Suggested labels

mod:i18n, app:core

Suggested reviewers

  • CatsJuice
  • EYHN

Poem

In the trash a whisper grows,
"Delete us now, let us go!"
With a modal bright and clear,
Confirm your choice—no need to fear.
Across all tongues, the message true:
Once they're gone, they're gone for you!
🗑️✨

✨ Finishing Touches
  • 📝 Generate Docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ 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>, please review it.
    • Explain this complex logic.
    • 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 explain this code block.
    • @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 gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @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.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

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 using 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 do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this 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.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration 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.

@github-actions github-actions bot added mod:i18n Related to i18n app:core labels Jul 6, 2025
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

🧹 Nitpick comments (8)
packages/frontend/i18n/src/resources/ko.json (1)

818-821: Terminology & counting style diverge from existing strings

Elsewhere in the file the UI consistently refers to items as “페이지” and formats counts without the “개의” classifier (e.g. {{ number }} 페이지 …).
For consistency and to avoid user-visible mismatch, consider:

-  "com.affine.deletePermanently.confirmModal.title.multiple": "{{ number }}개의 문서를 영구적으로 삭제하시겠습니까?",
-  "com.affine.deletePermanently.confirmModal.description.multiple": "{{ number }}개의 문서가 영구적으로 삭제됩니다. 이 작업은 되돌릴 수 없습니다.",
+  "com.affine.deletePermanently.confirmModal.title.multiple": "{{ number }} 문서를 영구적으로 삭제하시겠습니까?",
+  "com.affine.deletePermanently.confirmModal.description.multiple": "{{ number }} 문서가 영구적으로 삭제됩니다. 이 작업은 되돌릴 수 없습니다.",

(Optional) also decide whether “문서” or “페이지” should be the canonical noun and adjust all four newly added strings accordingly.

packages/frontend/i18n/src/resources/ar.json (1)

697-700: Ensure consistency with existing modal-text placeholders

Other confirmation dialogs (e.g. moveToTrash.confirmModal.description) inject the page title via {{title}}, which gives clearer context to the user.
Here the singular “permanent delete” flow drops that placeholder and instead shows a generic “سيتم حذف مستند بشكل دائم”. Consider aligning with the existing pattern:

-"com.affine.deletePermanently.confirmModal.description": "سيتم حذف مستند بشكل دائم. لا يمكن التراجع عن هذا الإجراء.",
+"com.affine.deletePermanently.confirmModal.description": "{{title}} سيتم حذفه بشكل دائم. لا يمكن التراجع عن هذا الإجراء.",

This keeps wording consistent across modals and makes the affected document explicit.
(Plural string already matches the earlier trash-move wording, so no change is required there.)

packages/frontend/i18n/src/resources/sv-SE.json (1)

697-700: Align phrasing with existing “Permanent radera” terminology

Elsewhere in this file (e.g. com.affine.trashOperation.deletePermanently) the phrase “Permanent radera” is used.
The new entries flip the word order to “Radera … permanent”, which introduces a minor inconsistency and makes text-search harder.

-"Radera dokument permanent?"
+"Permanent radera dokument?"
-"{{ number }} dokument kommer att raderas permanent. Denna åtgärd kan inte ångras."
+"{{ number }} dokument kommer att permanent raderas. Denna åtgärd kan inte ångras."

Apply the same adjustment to all four new keys so the wording is uniform across the locale.

packages/frontend/i18n/src/resources/de.json (1)

697-700: Keep key-group ordering & placeholder style consistent with neighbouring trash modal strings

In the preceding “moveToTrash” block the order is description ➜ title (singular & plural).
Here you switched to title ➜ description. Although purely cosmetic, staying consistent makes future merges and automated diff reviews easier.

While touching this, consider mirroring the existing placeholder pattern:

-  "com.affine.deletePermanently.confirmModal.description": "Ein Dokument wird dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.",
+  "com.affine.deletePermanently.confirmModal.description": "{{title}} wird dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.",

and swap the lines to match the earlier block:

-  "com.affine.deletePermanently.confirmModal.title": "Seite dauerhaft löschen?",
-  "com.affine.deletePermanently.confirmModal.description": "{{title}} wird dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.",
+  "com.affine.deletePermanently.confirmModal.description": "{{title}} wird dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden.",
+  "com.affine.deletePermanently.confirmModal.title": "Seite dauerhaft löschen?",

Same applies to the “multiple” variants.
No functional impact, just tidying up.

packages/frontend/i18n/src/resources/zh-Hant.json (1)

697-700: Align wording & placeholders with existing ‘move-to-trash’ strings

  1. Existing trash-flow keys use 頁面 for single items (confirmModal.title at L695) and inject the actual page title via {{title}} in the description. Here, the new permanent-delete keys switch to 文件 and hard-code “一篇文件”.
  2. This breaks visual consistency for end-users and loses the specific page title that the user is about to erase.

Consider mirroring the established pattern:

-"com.affine.deletePermanently.confirmModal.title": "確認永久刪除文件嗎?",
-"com.affine.deletePermanently.confirmModal.description": "一篇文件將被永久刪除。此操作無法撤銷。",
+"com.affine.deletePermanently.confirmModal.title": "確認永久刪除頁面?",
+"com.affine.deletePermanently.confirmModal.description": "{{title}} 將被永久刪除。此操作無法撤銷。",

(Plural keys are fine as-is; they already follow the {{ number }} pattern.)

This keeps terminology unified (“頁面”), preserves contextual information ({{title}}), and matches the UX of the existing delete-to-trash flow.

packages/frontend/i18n/src/resources/zh-Hans.json (1)

697-700: 保持与现有确认文案的一致性

现有“移动到回收站”确认弹窗使用了:

"title": "{{title}} 将被移动到回收站"

而永久删除弹窗的单条描述改为:

"description": "一篇文档将被永久删除。此操作无法撤销。"
  1. 「一篇文档」缺少具体指向,UI 上可能已有文档标题可用,建议保持一致使用 {{title}} 占位符,或统一成「该文档」。
  2. 单数标题目前用“确认永久删除文档吗?”,而回收站用“确定要删除文档?”。若无特殊需求,建议统一动词(“确认”/“确定”)与问号样式,减少体验割裂。

示例 diff(若决定采用标题占位符和统一动词):

-"com.affine.deletePermanently.confirmModal.title": "确认永久删除文档吗?",
-"com.affine.deletePermanently.confirmModal.description": "一篇文档将被永久删除。此操作无法撤销。",
+"com.affine.deletePermanently.confirmModal.title": "确定要永久删除文档?",
+"com.affine.deletePermanently.confirmModal.description": "{{title}} 将被永久删除。此操作无法撤销。",

仅供参考,确保与英文/其他语言资源及前端实现匹配后再修改。

packages/frontend/i18n/src/resources/uk.json (1)

697-700: Incorrect pluralisation & verb agreement for “multiple-delete” strings

When {{ number }} > 1 the noun must be plural (“документів”) and the verb should match (“будуть”). Current text remains singular, mirroring the same issue found in the existing moveToTrash keys.
Consider the quick fix below:

-"com.affine.deletePermanently.confirmModal.title.multiple": "Видалити {{ number }} документ назавжди?",
-"com.affine.deletePermanently.confirmModal.description.multiple": "{{ number }} документ буде видалено назавжди. Цю дію не можна скасувати.",
+"com.affine.deletePermanently.confirmModal.title.multiple": "Видалити {{ number }} документів назавжди?",
+"com.affine.deletePermanently.confirmModal.description.multiple": "{{ number }} документів будуть видалені назавжди. Цю дію не можна скасувати.",

(Feel free to refine further if you plan to add proper ICU plural rules later.)

packages/frontend/i18n/src/resources/ja.json (1)

697-700: Unify the noun used with the numeric placeholder for consistency

Existing “move-to-trash” strings mix 「件のドキュメント」 (title) and 「個のドキュメント」 (description).
The newly-added permanent-delete strings use 「件のドキュメント」 in both places.
Prefer picking one noun repo-wide (either 「件」 or 「個」) and applying it uniformly to avoid subtle wording differences in otherwise identical confirmation dialogs.

No functional breakage, but worth tidying up before translations proliferate further.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e8857d5 and 6ca1741.

📒 Files selected for processing (19)
  • packages/frontend/core/src/desktop/pages/workspace/trash-page.tsx (4 hunks)
  • packages/frontend/i18n/src/i18n.gen.ts (1 hunks)
  • packages/frontend/i18n/src/resources/ar.json (1 hunks)
  • packages/frontend/i18n/src/resources/de.json (1 hunks)
  • packages/frontend/i18n/src/resources/el-GR.json (1 hunks)
  • packages/frontend/i18n/src/resources/en.json (1 hunks)
  • packages/frontend/i18n/src/resources/es.json (1 hunks)
  • packages/frontend/i18n/src/resources/fa.json (1 hunks)
  • packages/frontend/i18n/src/resources/fr.json (1 hunks)
  • packages/frontend/i18n/src/resources/it-IT.json (1 hunks)
  • packages/frontend/i18n/src/resources/ja.json (1 hunks)
  • packages/frontend/i18n/src/resources/ko.json (1 hunks)
  • packages/frontend/i18n/src/resources/pl.json (1 hunks)
  • packages/frontend/i18n/src/resources/pt-BR.json (1 hunks)
  • packages/frontend/i18n/src/resources/ru.json (1 hunks)
  • packages/frontend/i18n/src/resources/sv-SE.json (1 hunks)
  • packages/frontend/i18n/src/resources/uk.json (1 hunks)
  • packages/frontend/i18n/src/resources/zh-Hans.json (1 hunks)
  • packages/frontend/i18n/src/resources/zh-Hant.json (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
packages/frontend/i18n/src/i18n.gen.ts (1)

undefined

<retrieved_learning>
Learnt from: EYHN
PR: #12320
File: packages/frontend/core/src/desktop/dialogs/collection-editor/rules-mode.tsx:366-366
Timestamp: 2025-05-22T02:37:07.462Z
Learning: In React components, avoid redundant translation calls. When using services like docDisplayMetaService.title$ that already provide localized strings, don't wrap the result in another translation call like i18n.t() as it's unnecessary and may break interpolation if the string contains special markers.
</retrieved_learning>

🔇 Additional comments (13)
packages/frontend/i18n/src/resources/es.json (1)

697-700: Switch the word order so it matches the existing “Eliminar permanentemente” terminology

Elsewhere in this file the wording pattern is “Eliminar permanentemente …” (e.g. com.affine.trashOperation.deletePermanently).
For consistency—and a slightly more natural-sounding Spanish—swap the adverb in the two title keys:

-"com.affine.deletePermanently.confirmModal.title": "¿Eliminar documento permanentemente?",
+"com.affine.deletePermanently.confirmModal.title": "¿Eliminar permanentemente el documento?",-"com.affine.deletePermanently.confirmModal.title.multiple": "¿Eliminar {{ number }} documentos permanentemente?",
+"com.affine.deletePermanently.confirmModal.title.multiple": "¿Eliminar permanentemente {{ number }} documentos?",

No functional impact, just keeps the UX copy coherent across the app.
[ suggest_nitpick ]

packages/frontend/i18n/src/resources/en.json (1)

702-705: Confirm placeholder & key propagation across all locales

New keys look fine in English, but please ensure:

  1. The {{ number }} placeholder name/spacing matches the code that interpolates it (most usages in the repo seem to rely on number without spaces or on count).
  2. Equivalent keys are added to every non-English locale to avoid runtime fallback to IDs.

No code changes needed here—just asking for a quick cross-check before merge.

packages/frontend/i18n/src/resources/it-IT.json (1)

697-700: Localization entries look correct and follow existing conventions

• Key naming mirrors the pattern used for the trash-move strings (lines 693-696).
• Placeholder spacing {{ number }} matches earlier usage.
• Italian wording and punctuation are natural and consistent.

No changes required.

packages/frontend/i18n/src/resources/pl.json (1)

697-700: New translation entries look good and consistent
The keys follow the existing naming/placeholder conventions ({{ number }}) used for the trash-modal strings, and the Polish phrasing is clear. No issues spotted.

packages/frontend/i18n/src/resources/pt-BR.json (1)

697-700: New permanent-delete strings look consistent

Keys follow the existing naming scheme (deletePermanently.confirmModal.*), the singular/plural messages mirror the earlier moveToTrash counterparts, and the {{ number }} placeholder matches the established placeholder style in this file. No issues spotted. 👍

packages/frontend/i18n/src/resources/fr.json (1)

697-700: New permanent-delete strings look correct and consistent

Keys follow existing naming conventions (deletePermanently.confirmModal.*), placeholders ({{ number }}) mirror the trash-modal counterparts, and the French phrasing is idiomatic.
Nothing else to flag.

packages/frontend/i18n/src/resources/el-GR.json (1)

697-700: Strings look consistent – no issues found

• Keys follow existing naming conventions.
• Greek phrasing, punctuation (; as question mark) and placeholders ({{ number }}) match the style of neighbouring entries.
• No missing commas or malformed JSON detected.

packages/frontend/i18n/src/resources/ru.json (1)

697-700: Keys & placeholders look consistent – no issues found.

The new confirmation-modal strings align with existing patterns ({{ number }} placeholder matches earlier “moveToTrash” keys) and use clear Russian wording. No action required.

packages/frontend/i18n/src/resources/fa.json (1)

697-700: Persian punctuation / wording – use the Persian question mark and keep wording consistent with existing strings

Current strings end with the western “?” but elsewhere in this file the Persian “؟” is used (e.g. key com.affine.moveToTrash.confirmModal.title).
Also keep wording parallel to the existing “آیا سند را حذف کنید؟” pattern.

-"com.affine.deletePermanently.confirmModal.title": "آیا سند را به طور دائم حذف کنید?",
+"com.affine.deletePermanently.confirmModal.title": "آیا سند را به طور دائم حذف کنید؟",

-"com.affine.deletePermanently.confirmModal.title.multiple": "آیا {{ number }} سند را به طور دائم حذف کنید?",
+"com.affine.deletePermanently.confirmModal.title.multiple": "آیا {{ number }} سند را به طور دائم حذف کنید؟",

Optional: consider replacing «قابل بازگشت نیست» with «قابل بازگردانی نیست» for fluency (used elsewhere), but that’s stylistic.
[ suggest_nitpick ]

packages/frontend/core/src/desktop/pages/workspace/trash-page.tsx (3)

1-1: LGTM: Import statement is correct.

The addition of useConfirmModal import is appropriate for the confirmation modal functionality being added.


46-47: LGTM: Hook usage is properly implemented.

The destructuring of openConfirmModal and permanentlyDeletePage follows the existing pattern and is correctly positioned within the component.


190-192: LGTM: Permission-gated deletion handler is correctly implemented.

The onDelete prop correctly passes the deletion handler only for users with admin or owner permissions, maintaining consistency with the existing onRestore prop pattern.

packages/frontend/i18n/src/i18n.gen.ts (1)

2812-2831: LGTM! Well-structured translation key additions.

The new translation keys for permanent deletion confirmation modals are properly structured and follow the existing naming conventions. The TypeScript signatures are correct, with appropriate parameter types for interpolation in the multiple document variants that match the existing patterns in the codebase.

- The button was not working (resolves toeverything#12869)
- Introduce a confirmation modal for permanently deleting documents from the trash
- Update the TrashPage component to handle multi-document deletion
- Added necessary translations
@yifeiyin yifeiyin force-pushed the multi-permanent-delete branch from 6ca1741 to 55cca0d Compare July 6, 2025 00:28
Copy link

codecov bot commented Jul 6, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 56.74%. Comparing base (e8857d5) to head (55cca0d).

Additional details and impacted files
@@            Coverage Diff             @@
##           canary   #13053      +/-   ##
==========================================
- Coverage   57.23%   56.74%   -0.50%     
==========================================
  Files        2702     2702              
  Lines      131363   131363              
  Branches    20601    20512      -89     
==========================================
- Hits        75190    74542     -648     
- Misses      54512    54611      +99     
- Partials     1661     2210     +549     
Flag Coverage Δ
server-test 79.04% <ø> (-1.12%) ⬇️
unittest 32.05% <ø> (-0.01%) ⬇️

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

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

app:core mod:i18n Related to i18n

Projects

Status: No status

Development

Successfully merging this pull request may close these issues.

[Bug]: Not possible to delete the whole trash at once

1 participant