-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Component/s: Extensibility - Content Action
-
Minor
Issue Summary
When using any type of select UI Kit menu inside the modal there's a bug where the modal closes unexpectedly when selecting an option. The issue started around February 12, 2026. This occurs with the Confluence content action
Steps to Reproduce
- The code below reproduces the issue:
import React from 'react';
import ForgeReconciler, { UserPicker } from '@forge/react';
const App = () =>
{ return<UserPicker></UserPicker> };
ForgeReconciler.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
Expected Results
The modal should not close upon user selection, making the content action module useless for any kind of select menu.
Actual Results
The modal closes unexpectedly.
Workaround
A fix has been created and will be deployed soon.