mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-25 19:08:04 +01:00
Migrate components to eslint
This commit is contained in:
committed by
Josh Perez
parent
de66486e41
commit
b13dbcfa77
@@ -81,7 +81,9 @@ export const UpdateDialog = ({
|
||||
</span>
|
||||
</div>
|
||||
<div className="module-left-pane-dialog__actions">
|
||||
<button onClick={dismissDialog}>{i18n('ok')}</button>
|
||||
<button type="button" onClick={dismissDialog}>
|
||||
{i18n('ok')}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
@@ -96,13 +98,14 @@ export const UpdateDialog = ({
|
||||
<div className="module-left-pane-dialog__actions">
|
||||
{!didSnooze && (
|
||||
<button
|
||||
type="button"
|
||||
className="module-left-pane-dialog__button--no-border"
|
||||
onClick={snoozeUpdate}
|
||||
>
|
||||
{i18n('autoUpdateLaterButtonLabel')}
|
||||
</button>
|
||||
)}
|
||||
<button onClick={startUpdate}>
|
||||
<button type="button" onClick={startUpdate}>
|
||||
{i18n('autoUpdateRestartButtonLabel')}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user