feat(dialog): Adds name to all dialogs. (#16626)

* feat(dialog): Adds name to all dialogs.

The name is used for debugging purposes to be added to logs.

* squash: Drop empty string.
This commit is contained in:
Дамян Минков
2025-11-06 09:49:30 -06:00
committed by GitHub
parent f9daba728f
commit 1aca8ab985
74 changed files with 104 additions and 119 deletions

View File

@@ -47,7 +47,7 @@ class ReactionsMenuButton extends AbstractButton<IProps> {
* @returns {void}
*/
override _handleClick() {
this.props.dispatch(openDialog(ReactionMenuDialog));
this.props.dispatch(openDialog('ReactionMenuDialog', ReactionMenuDialog));
}
/**