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

Commit

Permalink
Fix #4411, make expiration date buttons focusable
Browse files Browse the repository at this point in the history
  • Loading branch information
testeaxeax committed Jun 8, 2018
1 parent ef0b0c5 commit f2e55b1
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 f2e55b1

Please sign in to comment.