Adapt the rendering of extra icons in the room header (#11835)

Signed-off-by: Charly Nguyen <charly.nguyen@nordeck.net>
This commit is contained in:
Charly Nguyen 2023-11-09 12:23:30 +01:00 committed by GitHub
parent 03b01b4a50
commit 47a4e4a52a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 11 deletions

View file

@ -743,7 +743,7 @@ describe("LegacyRoomHeader", () => {
it("renders additionalButtons", async () => {
const additionalButtons: ViewRoomOpts["buttons"] = [
{
icon: <>test-icon</>,
icon: () => <>test-icon</>,
id: "test-id",
label: () => "test-label",
onClick: () => {},
@ -757,7 +757,7 @@ describe("LegacyRoomHeader", () => {
const callback = jest.fn();
const additionalButtons: ViewRoomOpts["buttons"] = [
{
icon: <>test-icon</>,
icon: () => <>test-icon</>,
id: "test-id",
label: () => "test-label",
onClick: callback,