Skip to content

feat: Introduce draft message indicator - #41355

Merged
dionisio-bot[bot] merged 10 commits into
developfrom
feat/draft-indicator
Jul 27, 2026
Merged

feat: Introduce draft message indicator#41355
dionisio-bot[bot] merged 10 commits into
developfrom
feat/draft-indicator

Conversation

@dougfabris

@dougfabris dougfabris commented Jul 13, 2026

Copy link
Copy Markdown
Member

Proposed changes (including videos or screenshots)

Replaces the experimental "Drafts in sidebar" feature preview with a first-class, always-on draft indicator, and extends draft support to threads.

image image

Previously, rooms with an unfinished message were grouped into a separate Drafts sidebar category, gated behind a feature preview. That preview is removed. Instead, any room with a draft is now marked inline with a pencil icon and its unfinished text is surfaced in the message preview — no category, no preview toggle. Thread-composer drafts are now also persisted and indicated, which they weren't before

Threads

  • Thread-composer drafts for existing threads are persisted to the server per tmid, so an unfinished reply also flags the room and is restored across devices. Drafts for not-yet-created threads stay local only, so they don't flag a room for a thread that can't be opened from the thread list.
  • Added a pencil indicator on each thread in the thread list (contextual bar) that has a draft.
image

How to test

  • Main draft: type in a room's composer without sending, switch rooms → the room shows a pencil icon and Draft: … preview. Clear the composer → indicator disappears.
  • Existing thread draft: open a thread that has replies, type without sending, close it → pencil shows on the room (sidebar) and on that thread in the thread list; it survives a reload/other device.
  • New thread draft: reply in a thread with no messages, type without sending, leave and come back → the composer restores your text, no pencil (thread doesn't exist yet). Send a message → the previously stored text does not reappear.
  • Confirm the old Drafts sidebar category and the "Drafts in sidebar" feature preview are gone.

Issue(s)

Steps to test or reproduce

Further comments

Review in cubic

Summary by CodeRabbit

Summary by CodeRabbit

  • New Features
    • Added an always-on draft indicator (pencil icon) for rooms and threads with unfinished drafts, including per-thread draft state.
  • Improvements
    • Drafts now take precedence in message previews with HTML-safe rendering.
    • Thread drafts are saved/restored independently when composing in threads.
    • Removed the dedicated “Drafts” sidebar section in favor of the unified indicator.
  • Bug Fixes
    • Clearing empty thread drafts works correctly.
  • Tests
    • Expanded coverage for draft selection and per-thread draft persistence/flush behavior.

CORE-81
CORE-2414

@dionisio-bot

dionisio-bot Bot commented Jul 13, 2026

Copy link
Copy Markdown
Contributor

Looks like this PR is ready to merge! 🎉
If you have any trouble, please check the PR guidelines

@changeset-bot

changeset-bot Bot commented Jul 13, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: c005784

The changes in this PR will be included in the next version bump.

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@coderabbitai

coderabbitai Bot commented Jul 13, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

This change replaces the Drafts sidebar preview with always-on draft indicators, adds per-thread draft persistence through rooms.saveDraft, and surfaces draft state in composers, room previews, sidebars, and thread lists.

Changes

Thread draft persistence and composer flow

Layer / File(s) Summary
Draft persistence contracts and API
packages/core-typings/..., packages/model-typings/..., packages/models/..., apps/meteor/lib/publishFields.ts, apps/meteor/server/api/v1/rooms.ts, apps/meteor/tests/end-to-end/api/rooms.ts
Subscriptions expose threadDrafts; rooms.saveDraft accepts tmid; model persistence updates nested thread drafts and tests cover saving and clearing them.
Thread composer draft lifecycle
apps/meteor/client/views/room/composer/..., apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
Thread composers initialize from per-thread drafts and pass thread existence into useDraft, which manages local restoration, deduplicated flushing, and thread-aware persistence.
Draft previews and visual indicators
apps/meteor/client/lib/utils/..., apps/meteor/client/sidebar/..., apps/meteor/client/views/navigation/sidepanel/..., apps/meteor/client/views/room/contextualBar/Threads/..., packages/i18n/src/locales/en.i18n.json
Main drafts take precedence over thread drafts in previews, while pencil indicators identify unfinished room messages and thread messages.

Always-on draft navigation behavior

Layer / File(s) Summary
Removal of the Drafts feature preview
apps/meteor/client/sidebar/hooks/useRoomList.ts, packages/ui-client/src/hooks/useFeaturePreviewList.ts, apps/meteor/server/settings/accounts.ts, packages/i18n/src/locales/{pt-BR,sv}.i18n.json, .changeset/funny-wings-sell.md
The Drafts sidebar group and feature-preview setting are removed, default ordering is updated, and obsolete locale keys are deleted.

Estimated code review effort: 3 (Moderate) | ~25 minutes

Sequence Diagram(s)

sequenceDiagram
  participant ThreadComposer
  participant MessageBox
  participant useDraft
  participant rooms.saveDraft
  participant Subscriptions
  ThreadComposer->>MessageBox: provide tmid and threadExists
  MessageBox->>useDraft: initialize from threadDrafts[tmid]
  useDraft->>rooms.saveDraft: save draft with tmid
  rooms.saveDraft->>Subscriptions: update threadDrafts[tmid]
  Subscriptions-->>ThreadComposer: publish updated subscription
Loading

Possibly related PRs

Suggested labels: type: feature

Suggested reviewers: kevlehman

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: adding always-on draft message indicators.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

Warning

Review ran into problems

🔥 Problems

Errors were encountered while retrieving linked issues.

Errors (2)
  • CORE-81: Request failed with status code 401
  • CORE-2414: Request failed with status code 401

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

Comment @coderabbitai help to get the list of available commands.

@codecov

codecov Bot commented Jul 13, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 86.11111% with 10 lines in your changes missing coverage. Please review.
✅ Project coverage is 68.65%. Comparing base (6edcdd7) to head (c005784).
⚠️ Report is 9 commits behind head on develop.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff            @@
##           develop   #41355    +/-   ##
=========================================
  Coverage    68.64%   68.65%            
=========================================
  Files         4139     4139            
  Lines       159115   159146    +31     
  Branches     27900    28043   +143     
=========================================
+ Hits        109232   109260    +28     
+ Misses       44748    44741     -7     
- Partials      5135     5145    +10     
Flag Coverage Δ
e2e 58.81% <56.09%> (-0.03%) ⬇️
e2e-api 45.35% <100.00%> (-0.02%) ⬇️
unit 70.69% <100.00%> (+0.01%) ⬆️

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

🚀 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.

@dougfabris
dougfabris marked this pull request as ready for review July 14, 2026 19:01
@dougfabris
dougfabris requested review from a team as code owners July 14, 2026 19:01
@coderabbitai coderabbitai Bot added the type: feature Pull requests that introduces new feature label Jul 14, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

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 (1)
apps/meteor/server/api/v1/rooms.ts (1)

423-428: 🎯 Functional Correctness | 🔵 Trivial | 💤 Low value

Remove nullable: true or update the TypeScript signature to allow null.

The JSON schema permits tmid to be null (nullable: true), but the TypeScript generic <{ ..., tmid?: IMessage['_id'] }> expects it to be string | undefined. This causes a hidden type mismatch where this.bodyParams.tmid could be null at runtime, which is then passed to updateDraftByRoomIdAndUserId that expects string | undefined.

Since the client only omits tmid when not saving a thread draft (via ...(tmid && { tmid })), you can safely remove nullable: true.

♻️ Proposed fix
 const saveDraftBodySchema = ajv.compile<{ rid: IRoom['_id']; draft: string; tmid?: IMessage['_id'] }>({
 	type: 'object',
 	properties: {
 		rid: { type: 'string', minLength: 1 },
 		draft: { type: 'string' },
-		tmid: { type: 'string', minLength: 1, nullable: true },
+		tmid: { type: 'string', minLength: 1 },
 	},
 	required: ['rid', 'draft'],
 	additionalProperties: false,
 });
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/meteor/server/api/v1/rooms.ts` around lines 423 - 428, Remove nullable:
true from the tmid property in saveDraftBodySchema so the JSON schema matches
the TypeScript signature and updateDraftByRoomIdAndUserId receives only string
or undefined.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts`:
- Around line 5-11: Keep threadExistsRef synchronized with the threadExists prop
in useDraft by adding an effect that updates the ref whenever threadExists
changes. Preserve the existing ref usage in flushDraft so drafts for newly
created threads continue syncing normally.

---

Nitpick comments:
In `@apps/meteor/server/api/v1/rooms.ts`:
- Around line 423-428: Remove nullable: true from the tmid property in
saveDraftBodySchema so the JSON schema matches the TypeScript signature and
updateDraftByRoomIdAndUserId receives only string or undefined.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 312c07da-4c66-41bc-8726-2c0fe9841807

📥 Commits

Reviewing files that changed from the base of the PR and between 460858e and 67b8a06.

⛔ Files ignored due to path filters (1)
  • apps/meteor/public/images/featurePreview/sidebar-drafts.png is excluded by !**/*.png
📒 Files selected for processing (30)
  • .changeset/funny-wings-sell.md
  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/lib/utils/getSubscriptionDraft.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts
  • apps/meteor/client/sidebar/Item/Condensed.tsx
  • apps/meteor/client/sidebar/Item/Extended.tsx
  • apps/meteor/client/sidebar/Item/Medium.tsx
  • apps/meteor/client/sidebar/RoomList/SidebarItemTemplateWithData.tsx
  • apps/meteor/client/sidebar/hooks/useRoomList.ts
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomSidePanelItem.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidepanelItem.tsx
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBox.tsx
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
  • apps/meteor/client/views/room/contextualBar/Threads/ThreadList.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListMessage.tsx
  • apps/meteor/lib/publishFields.ts
  • apps/meteor/server/api/v1/rooms.ts
  • apps/meteor/server/settings/accounts.ts
  • apps/meteor/tests/end-to-end/api/rooms.ts
  • packages/core-typings/src/ISubscription.ts
  • packages/i18n/src/locales/en.i18n.json
  • packages/i18n/src/locales/pt-BR.i18n.json
  • packages/i18n/src/locales/sv.i18n.json
  • packages/model-typings/src/models/ISubscriptionsModel.ts
  • packages/models/src/models/Subscriptions.ts
  • packages/ui-client/src/hooks/useFeaturePreviewList.ts
💤 Files with no reviewable changes (4)
  • packages/i18n/src/locales/pt-BR.i18n.json
  • apps/meteor/server/settings/accounts.ts
  • packages/i18n/src/locales/sv.i18n.json
  • apps/meteor/client/sidebar/hooks/useRoomList.ts
📜 Review details
⏰ Context from checks skipped due to timeout. (4)
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: Hacktron Security Check
  • GitHub Check: CodeQL-Build
  • GitHub Check: CodeQL-Build
🧰 Additional context used
📓 Path-based instructions (2)
**/*.{ts,tsx,js}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • apps/meteor/client/sidebar/Item/Condensed.tsx
  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/views/room/contextualBar/Threads/ThreadList.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • packages/core-typings/src/ISubscription.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts
  • apps/meteor/client/lib/utils/getSubscriptionDraft.ts
  • apps/meteor/tests/end-to-end/api/rooms.ts
  • apps/meteor/lib/publishFields.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
  • packages/models/src/models/Subscriptions.ts
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
  • packages/ui-client/src/hooks/useFeaturePreviewList.ts
  • packages/model-typings/src/models/ISubscriptionsModel.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/sidebar/Item/Extended.tsx
  • apps/meteor/server/api/v1/rooms.ts
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidepanelItem.tsx
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListMessage.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomSidePanelItem.tsx
  • apps/meteor/client/sidebar/Item/Medium.tsx
  • apps/meteor/client/sidebar/RoomList/SidebarItemTemplateWithData.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBox.tsx
**/*.spec.ts

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.spec.ts: Use descriptive test names that clearly communicate expected behavior in Playwright tests
Use .spec.ts extension for test files (e.g., login.spec.ts)

Files:

  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
🧠 Learnings (10)
📚 Learning: 2026-03-27T14:52:56.865Z
Learnt from: dougfabris
Repo: RocketChat/Rocket.Chat PR: 39892
File: apps/meteor/client/views/room/contextualBar/Threads/Thread.tsx:150-155
Timestamp: 2026-03-27T14:52:56.865Z
Learning: In Rocket.Chat, there are two different `ModalBackdrop` components with different prop APIs. During review, confirm the import source: (1) `rocket.chat/fuselage` `ModalBackdrop` uses `ModalBackdropProps` based on `BoxProps` (so it supports `onClick` and other Box/DOM props) and does not have an `onDismiss` prop; (2) `rocket.chat/ui-client` `ModalBackdrop` uses a narrower props interface like `{ children?: ReactNode; onDismiss?: () => void }` and handles Escape keypress and outside mouse-up, and it does not forward arbitrary DOM props such as `onClick`. Flag mismatched props (e.g., `onDismiss` passed to the fuselage component or `onClick` passed to the ui-client component) and ensure the usage matches the correct component being imported.

Applied to files:

  • apps/meteor/client/sidebar/Item/Condensed.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/ThreadList.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/sidebar/Item/Extended.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidepanelItem.tsx
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListMessage.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomSidePanelItem.tsx
  • apps/meteor/client/sidebar/Item/Medium.tsx
  • apps/meteor/client/sidebar/RoomList/SidebarItemTemplateWithData.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBox.tsx
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • apps/meteor/client/sidebar/Item/Condensed.tsx
  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/views/room/contextualBar/Threads/ThreadList.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • packages/core-typings/src/ISubscription.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts
  • apps/meteor/client/lib/utils/getSubscriptionDraft.ts
  • apps/meteor/tests/end-to-end/api/rooms.ts
  • apps/meteor/lib/publishFields.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
  • packages/models/src/models/Subscriptions.ts
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
  • packages/ui-client/src/hooks/useFeaturePreviewList.ts
  • packages/model-typings/src/models/ISubscriptionsModel.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx
  • apps/meteor/client/sidebar/Item/Extended.tsx
  • apps/meteor/server/api/v1/rooms.ts
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidepanelItem.tsx
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListMessage.tsx
  • apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomSidePanelItem.tsx
  • apps/meteor/client/sidebar/Item/Medium.tsx
  • apps/meteor/client/sidebar/RoomList/SidebarItemTemplateWithData.tsx
  • apps/meteor/client/views/room/composer/messageBox/MessageBox.tsx
📚 Learning: 2026-02-10T16:32:42.586Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 38528
File: apps/meteor/client/startup/roles.ts:14-14
Timestamp: 2026-02-10T16:32:42.586Z
Learning: In Rocket.Chat's Meteor client code, DDP streams use EJSON and Date fields arrive as Date objects; do not manually construct new Date() in stream handlers (for example, in sdk.stream()). Only REST API responses return plain JSON where dates are strings, so implement explicit conversion there if needed. Apply this guidance to all TypeScript files under apps/meteor/client to ensure consistent date handling in DDP streams and REST responses.

Applied to files:

  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts
  • apps/meteor/client/lib/utils/getSubscriptionDraft.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
📚 Learning: 2026-05-11T20:30:35.265Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 40480
File: apps/meteor/client/meteor/startup/accounts.ts:59-61
Timestamp: 2026-05-11T20:30:35.265Z
Learning: In Rocket.Chat’s Meteor client code, when calling `dispatchToastMessage` with `{ type: 'error' }`, pass the raw caught error object as `message` without manual normalization. `dispatchToastMessage` is designed to accept `message: unknown` for error toasts, so avoid converting errors to strings (e.g., `String(error)`) or extracting `error.message` before passing them.

Applied to files:

  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts
  • apps/meteor/client/lib/utils/getSubscriptionDraft.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
📚 Learning: 2026-02-24T19:22:48.358Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 38493
File: apps/meteor/tests/e2e/omnichannel/omnichannel-send-pdf-transcript.spec.ts:66-67
Timestamp: 2026-02-24T19:22:48.358Z
Learning: In Playwright end-to-end tests (e.g., under apps/meteor/tests/e2e/...), prefer locating elements by translated text (getByText) and ARIA roles (getByRole) over data-qa attributes. If translation values change, update the corresponding test locators accordingly. Never use data-qa locators. This guideline applies to all Playwright e2e test specs in the repository and helps keep tests robust to UI text changes and accessible semantics.

Applied to files:

  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • packages/core-typings/src/ISubscription.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts
  • apps/meteor/client/lib/utils/getSubscriptionDraft.ts
  • apps/meteor/tests/end-to-end/api/rooms.ts
  • apps/meteor/lib/publishFields.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
  • packages/models/src/models/Subscriptions.ts
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
  • packages/ui-client/src/hooks/useFeaturePreviewList.ts
  • packages/model-typings/src/models/ISubscriptionsModel.ts
  • apps/meteor/server/api/v1/rooms.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • packages/core-typings/src/ISubscription.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts
  • apps/meteor/client/lib/utils/getSubscriptionDraft.ts
  • apps/meteor/tests/end-to-end/api/rooms.ts
  • apps/meteor/lib/publishFields.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
  • packages/models/src/models/Subscriptions.ts
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
  • packages/ui-client/src/hooks/useFeaturePreviewList.ts
  • packages/model-typings/src/models/ISubscriptionsModel.ts
  • apps/meteor/server/api/v1/rooms.ts
📚 Learning: 2026-03-06T18:10:15.268Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 39397
File: packages/gazzodown/src/code/CodeBlock.spec.tsx:47-68
Timestamp: 2026-03-06T18:10:15.268Z
Learning: In tests (especially those using testing-library/dom/jsdom) for Rocket.Chat components, the HTML <code> element has an implicit ARIA role of 'code'. Therefore, screen.getByRole('code') or screen.findByRole('code') will locate <code> elements even without a role attribute. Do not flag findByRole('code') as invalid in reviews; prefer using the implicit role instead of adding role="code" unless necessary for accessibility.

Applied to files:

  • apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts
  • apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts
📚 Learning: 2026-03-16T21:50:37.589Z
Learnt from: amitb0ra
Repo: RocketChat/Rocket.Chat PR: 39676
File: .changeset/migrate-users-register-openapi.md:3-3
Timestamp: 2026-03-16T21:50:37.589Z
Learning: For changes related to OpenAPI migrations in Rocket.Chat/OpenAPI, when removing endpoint types and validators from rocket.chat/rest-typings (e.g., UserRegisterParamsPOST, /v1/users.register) document this as a minor changeset (not breaking) per RocketChat/Rocket.Chat-Open-API#150 Rule 7. Note that the endpoint type is re-exposed via a module augmentation .d.ts in the consuming package (e.g., packages/web-ui-registration/src/users-register.d.ts). In reviews, ensure the changeset clearly states: this is a non-breaking change, the major version should not be bumped, and the changeset reflects a minor version bump. Do not treat this as a breaking change during OpenAPI migrations.

Applied to files:

  • .changeset/funny-wings-sell.md
📚 Learning: 2026-01-19T18:08:05.314Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38169
File: packages/ui-client/src/hooks/useGoToDirectMessage.ts:20-27
Timestamp: 2026-01-19T18:08:05.314Z
Learning: Rule of Hooks: In React, hooks (including custom hooks like useGoToDirectMessage and useUserSubscriptionByName) must be called unconditionally and in the same order on every render. Do not conditionally call hooks based on values; instead, derive safe inputs if a value may be undefined (e.g., pass an empty string or undefined) and handle variations in logic outside the hook invocation. This preserves hook order and avoids violations. Apply this guideline to all files under packages/ui-client/src/hooks where hooks are used.

Applied to files:

  • packages/ui-client/src/hooks/useFeaturePreviewList.ts
🔇 Additional comments (24)
packages/core-typings/src/ISubscription.ts (1)

69-69: LGTM!

packages/model-typings/src/models/ISubscriptionsModel.ts (1)

1-1: LGTM!

Also applies to: 142-147

packages/models/src/models/Subscriptions.ts (1)

644-648: LGTM!

apps/meteor/lib/publishFields.ts (1)

43-43: LGTM!

apps/meteor/tests/end-to-end/api/rooms.ts (1)

184-229: LGTM!

apps/meteor/client/views/room/composer/ComposerMessage.tsx (1)

12-24: LGTM!

apps/meteor/client/views/room/composer/messageBox/MessageBox.tsx (1)

135-140: LGTM!

apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx (1)

116-116: LGTM!

apps/meteor/client/lib/utils/getSubscriptionDraft.ts (1)

1-9: LGTM!

apps/meteor/client/lib/utils/getSubscriptionDraft.spec.ts (1)

1-22: LGTM!

apps/meteor/client/views/navigation/sidepanel/SidepanelItem/RoomSidePanelItem.tsx (1)

2-2: LGTM!

Also applies to: 14-14, 43-46, 68-68

apps/meteor/client/views/navigation/sidepanel/SidepanelItem/SidepanelItem.tsx (1)

22-22: LGTM!

Also applies to: 37-37, 77-77

apps/meteor/client/views/room/contextualBar/Threads/ThreadList.tsx (1)

180-180: LGTM!

apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListItem.tsx (1)

17-21: LGTM!

Also applies to: 63-63

apps/meteor/client/views/room/contextualBar/Threads/components/ThreadListMessage.tsx (1)

11-17: LGTM!

Also applies to: 40-40, 59-62, 75-75

packages/i18n/src/locales/en.i18n.json (1)

1929-1929: LGTM!

Also applies to: 5608-5609

apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.ts (1)

8-15: LGTM!

apps/meteor/client/lib/utils/normalizeMessagePreview/getMessagePreview.spec.ts (1)

19-58: LGTM!

apps/meteor/client/sidebar/RoomList/SidebarItemTemplateWithData.tsx (1)

2-2: LGTM!

Also applies to: 12-12, 95-98, 133-133, 203-208

apps/meteor/client/sidebar/Item/Condensed.tsx (1)

22-30: LGTM!

apps/meteor/client/sidebar/Item/Extended.tsx (1)

45-45: LGTM!

Also applies to: 66-66

apps/meteor/client/sidebar/Item/Medium.tsx (1)

21-29: LGTM!

packages/ui-client/src/hooks/useFeaturePreviewList.ts (1)

3-3: LGTM!

Also applies to: 28-31

.changeset/funny-wings-sell.md (1)

1-10: LGTM!

Comment thread apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

All reported issues were addressed across 31 files

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

Comment thread apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
Comment thread apps/meteor/server/api/v1/rooms.ts Outdated
Comment thread apps/meteor/client/lib/utils/getSubscriptionDraft.ts
Comment thread packages/models/src/models/Subscriptions.ts
Comment thread apps/meteor/server/api/v1/rooms.ts
Comment thread apps/meteor/client/sidebar/RoomList/SidebarItemTemplateWithData.tsx
Comment thread apps/meteor/tests/end-to-end/api/rooms.ts Outdated

@hacktron-app hacktron-app Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

1 issue found across 1 file

Severity Count
MEDIUM 1

View full scan results

Comment thread packages/models/src/models/Subscriptions.ts
@dougfabris
dougfabris force-pushed the feat/draft-indicator branch from 82340f3 to 67b8a06 Compare July 14, 2026 21:28
Comment thread apps/meteor/server/api/v1/rooms.ts Outdated
dougfabris and others added 4 commits July 16, 2026 23:30
Also keep threadExistsRef in sync with the threadExists prop so
flushDraft respects thread existence changes after mount.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-authored-by: Kevin Aleman <kaleman960@gmail.com>

@jessicaschelly jessicaschelly left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

can you check this behavior and maybe add a test to it?

Thread draft gets stuck after the last reply is deleted

Steps to reproduce

  1. Create a thread with one reply
  2. Type another reply, but don’t send it
  3. Close the thread so the draft is saved and the pencil appears
  4. Click on "View thread"
  5. Delete the last thread reply
  6. Clear the restored draft and close the thread again
  7. Click on "View thread" again

Expected: The persisted draft should be removed after clearing it.
Actual: The pencil remains and the cleared draft comes back.

It's small but still worth checking it

Image

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts`:
- Around line 48-54: Update the draft-save logic in useDraft so the
draft===serverValueRef.current path clears the local draft before returning.
Move the serverValueRef update until saveDraft resolves successfully, and ensure
rejected saves leave the local draft intact and do not advance the server
reference so the value can be retried.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 626dee47-7bb2-48f9-894f-4066a4622ce6

📥 Commits

Reviewing files that changed from the base of the PR and between e47caa2 and f9ee268.

📒 Files selected for processing (7)
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.spec.tsx
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • apps/meteor/server/api/v1/rooms.ts
  • apps/meteor/server/settings/accounts.ts
  • apps/meteor/tests/end-to-end/api/rooms.ts
🚧 Files skipped from review as they are similar to previous changes (4)
  • apps/meteor/server/settings/accounts.ts
  • apps/meteor/server/api/v1/rooms.ts
  • apps/meteor/tests/end-to-end/api/rooms.ts
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.spec.tsx
📜 Review details
⏰ Context from checks skipped due to timeout. (3)
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: Hacktron Security Check
  • GitHub Check: CodeQL-Build
⚠️ CI failures not shown inline (5)

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ❌ **No merge conflicts** — This PR has conflicts, please resolve them before merging
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ❌ **Mergeable** — This PR is not mergeable
- ❌ **Has milestone or project** — This PR is missing the required milestone or project
- ✅ **Valid PR title**
- ✅ **Correct target version**

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ❌ **No merge conflicts** — This PR has conflicts, please resolve them before merging
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ❌ **Mergeable** — This PR is not mergeable
- ❌ **Has milestone or project** — This PR is missing the required milestone or project
- ✅ **Valid PR title**
- ✅ **Correct target version**

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ✅ **No merge conflicts**
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ✅ **Mergeable**
- ❌ **Has milestone or project** — This PR is missing the required milestone or project
- ✅ **Valid PR title**
- ✅ **Correct target version**

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ❌ **No merge conflicts** — This PR has conflicts, please resolve them before merging
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ❌ **Mergeable** — This PR is not mergeable
- ❌ **Has milestone or project** — This PR is missing the required milestone or project
- ✅ **Valid PR title**
- ✅ **Correct target version**

GitHub Check: Dionisio QA: Some checks did not pass

Conclusion: failure

View job details

**Conclusion:** failure
### Steps
- ❌ **No merge conflicts** — This PR has conflicts, please resolve them before merging
- ❌ **QA assured** — This PR is missing the 'stat: QA assured' label
- ❌ **Mergeable** — This PR is not mergeable
- ❌ **Has milestone or project** — This PR is missing the required milestone or project
- ✅ **Valid PR title**
- ✅ **Correct target version**
🧰 Additional context used
📓 Path-based instructions (1)
**/*.{ts,tsx,js}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
🧠 Learnings (6)
📚 Learning: 2026-03-27T14:52:56.865Z
Learnt from: dougfabris
Repo: RocketChat/Rocket.Chat PR: 39892
File: apps/meteor/client/views/room/contextualBar/Threads/Thread.tsx:150-155
Timestamp: 2026-03-27T14:52:56.865Z
Learning: In Rocket.Chat, there are two different `ModalBackdrop` components with different prop APIs. During review, confirm the import source: (1) `rocket.chat/fuselage` `ModalBackdrop` uses `ModalBackdropProps` based on `BoxProps` (so it supports `onClick` and other Box/DOM props) and does not have an `onDismiss` prop; (2) `rocket.chat/ui-client` `ModalBackdrop` uses a narrower props interface like `{ children?: ReactNode; onDismiss?: () => void }` and handles Escape keypress and outside mouse-up, and it does not forward arbitrary DOM props such as `onClick`. Flag mismatched props (e.g., `onDismiss` passed to the fuselage component or `onClick` passed to the ui-client component) and ensure the usage matches the correct component being imported.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx
  • apps/meteor/client/views/room/composer/ComposerMessage.tsx
  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
📚 Learning: 2026-02-10T16:32:42.586Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 38528
File: apps/meteor/client/startup/roles.ts:14-14
Timestamp: 2026-02-10T16:32:42.586Z
Learning: In Rocket.Chat's Meteor client code, DDP streams use EJSON and Date fields arrive as Date objects; do not manually construct new Date() in stream handlers (for example, in sdk.stream()). Only REST API responses return plain JSON where dates are strings, so implement explicit conversion there if needed. Apply this guidance to all TypeScript files under apps/meteor/client to ensure consistent date handling in DDP streams and REST responses.

Applied to files:

  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
📚 Learning: 2026-05-11T20:30:35.265Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 40480
File: apps/meteor/client/meteor/startup/accounts.ts:59-61
Timestamp: 2026-05-11T20:30:35.265Z
Learning: In Rocket.Chat’s Meteor client code, when calling `dispatchToastMessage` with `{ type: 'error' }`, pass the raw caught error object as `message` without manual normalization. `dispatchToastMessage` is designed to accept `message: unknown` for error toasts, so avoid converting errors to strings (e.g., `String(error)`) or extracting `error.message` before passing them.

Applied to files:

  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
🔇 Additional comments (2)
apps/meteor/client/views/room/contextualBar/Threads/components/ThreadChat.tsx (1)

2-2: LGTM!

Also applies to: 116-116

apps/meteor/client/views/room/composer/ComposerMessage.tsx (1)

13-14: LGTM!

Also applies to: 91-91

Comment thread apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

All reported issues were addressed across 4 files (changes from recent commits).

Tip: Review your code locally with the cubic CLI to iterate faster.

Re-trigger cubic

Comment thread apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
Comment thread apps/meteor/client/views/room/composer/messageBox/hooks/useDraft.ts
@dougfabris dougfabris added this to the 8.8.0 milestone Jul 23, 2026

@hacktron-app hacktron-app Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

1 issue found across 1 file

Severity Count
MEDIUM 1

View full scan results

Comment thread apps/meteor/server/api/v1/rooms.ts Outdated
@dougfabris
dougfabris force-pushed the feat/draft-indicator branch from 5c93685 to 9434fc9 Compare July 23, 2026 18:06

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

All reported issues were addressed across 2 files (changes from recent commits).

Tip: Review your code locally with the cubic CLI to iterate faster.

Re-trigger cubic

Comment thread apps/meteor/server/api/v1/rooms.ts

@KevLehman KevLehman left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

BE happy

@jessicaschelly jessicaschelly added the stat: QA assured Means it has been tested and approved by a company insider label Jul 27, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Jul 27, 2026
@ggazzo
ggazzo added this pull request to the merge queue Jul 27, 2026
@github-merge-queue
github-merge-queue Bot removed this pull request from the merge queue due to failed status checks Jul 27, 2026
@dougfabris dougfabris modified the milestone: 8.8.0 Jul 27, 2026
@dionisio-bot dionisio-bot Bot added stat: ready to merge PR tested and approved waiting for merge and removed stat: ready to merge PR tested and approved waiting for merge labels Jul 27, 2026
@dougfabris dougfabris removed the stat: QA assured Means it has been tested and approved by a company insider label Jul 27, 2026
@dionisio-bot dionisio-bot Bot removed the stat: ready to merge PR tested and approved waiting for merge label Jul 27, 2026
@dougfabris dougfabris added the stat: QA assured Means it has been tested and approved by a company insider label Jul 27, 2026
@dionisio-bot dionisio-bot Bot added the stat: ready to merge PR tested and approved waiting for merge label Jul 27, 2026
@dionisio-bot
dionisio-bot Bot added this pull request to the merge queue Jul 27, 2026
Merged via the queue into develop with commit 4947601 Jul 27, 2026
99 of 101 checks passed
@dionisio-bot
dionisio-bot Bot deleted the feat/draft-indicator branch July 27, 2026 17:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

stat: QA assured Means it has been tested and approved by a company insider stat: ready to merge PR tested and approved waiting for merge type: feature Pull requests that introduces new feature

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants