Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #4538 from testeaxeax/issue-4411
Browse files Browse the repository at this point in the history
Fix #4411, make expiration date buttons focusable
  • Loading branch information
chenba committed Jun 14, 2018
2 parents b432a01 + f2e55b1 commit f3cb02a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/pages/shot/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -600,8 +600,8 @@ class ExpireWidget extends React.Component {
<Localized id="shotPageKeepTwoWeeks"><option value={ 14 * day }>2 Weeks</option></Localized>
<Localized id="shotPageKeepOneMonth"><option value={ 31 * day }>1 Month</option></Localized>
</select>
<Localized id="shotPageSaveExpiration"><span className="button tiny secondary" onClick={this.clickSaveExpire.bind(this)}>save</span></Localized>
<Localized id="shotPageCancelExpiration"><span className="button tiny secondary" onClick={this.clickCancelExpire.bind(this)}>cancel</span></Localized>
<Localized id="shotPageSaveExpiration"><span className="button tiny secondary" tabIndex="0" onClick={this.clickSaveExpire.bind(this)}>save</span></Localized>
<Localized id="shotPageCancelExpiration"><span className="button tiny secondary" tabIndex="0" onClick={this.clickCancelExpire.bind(this)}>cancel</span></Localized>
</span>
);
}
Expand Down

0 comments on commit f3cb02a

Please sign in to comment.