Revert "Merge pull request #3019 from matrix-org/travis/sr/fix-timeline"

This reverts commit 9a1a9825b0, reversing
changes made to 62dc83310a.
This commit is contained in:
J. Ryan Stinnett 2019-05-28 12:19:35 +01:00
parent e1d1c8f99c
commit f0d67e0454
5 changed files with 10 additions and 76 deletions

View file

@ -67,8 +67,8 @@ export default function AccessibleButton(props) {
restProps.ref = restProps.inputRef;
delete restProps.inputRef;
restProps.tabIndex = restProps.tabIndex === undefined ? "0" : restProps.tabIndex;
restProps.role = restProps.role === undefined ? "button" : restProps.role;
restProps.tabIndex = restProps.tabIndex || "0";
restProps.role = "button";
restProps.className = (restProps.className ? restProps.className + " " : "") +
"mx_AccessibleButton";