1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Change Riot Bot button text and make it a block element

Fixes https://github.com/vector-im/riot-web/issues/8265
This commit is contained in:
Travis Ralston
2019-01-29 19:07:02 -07:00
parent 0cce912cf6
commit 0591c3a2bb

View File

@@ -140,9 +140,11 @@ export default class HelpSettingsTab extends React.Component {
target='_blank'>{sub}</a>,
})
}
<AccessibleButton onClick={this._onStartBotChat} kind='primary'>
{_t("Start a chat with Riot Bot")}
</AccessibleButton>
<div>
<AccessibleButton onClick={this._onStartBotChat} kind='primary'>
{_t("Chat with Riot Bot")}
</AccessibleButton>
</div>
</div>
);
}