1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-04 11:51:45 +03:00

Merge pull request #4578 from matrix-org/t3chguy/topic_dialog

Fix topic dialog not supporting escape as it didn't have a "Close"
This commit is contained in:
Michael Telatynski
2020-05-13 10:51:00 +01:00
committed by GitHub

View File

@@ -366,6 +366,7 @@ export const Commands = [
Modal.createTrackedDialog('Slash Commands', 'Topic', InfoDialog, {
title: room.name,
description: <div dangerouslySetInnerHTML={{ __html: topicHtml }} />,
hasCloseButton: true,
});
return success();
},