In recent bug appears when you try to select an option in any select menu of Content Action Module (https://developer.atlassian.com/platform/forge/manifest-reference/modules/confluence-content-action/)
A simple example
(manifest)
modules:
confluence:contentAction:
- key: example-id
resource: exampleEntry
render: native
title: "Example"
resources:
- key: exampleEntry
path: src/exampleEntry.jsx
(entry file)
// exampleEntry.jsx
import React, { useState } from 'react';
import ForgeReconciler, { UserPicker } from '@forge/react';
const App = () => {
const [value, setValue] = useState([]);
return (
<UserPicker
label="Select option"
placeholder="Select a user"
name="option"
value={value}
onChange={(option) => console.log(option)}
/>
);
};
ForgeReconciler.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
When the user try to select anything from the menu, it crashes the modal.
This bug was reported, and you can track it here https://jira.atlassian.com/browse/CONFCLOUD-84048
If anyone else is experiencing this issue or has found a workaround, I’d appreciate your input.