Skip to content

Commit

Permalink
Fix ok button for non-English language (#3020)
Browse files Browse the repository at this point in the history
The ok button ID was accidentally translated, so that it failed with any language where it was not translated with "ok".
  • Loading branch information
Marijn0 authored Jun 30, 2024
1 parent 3e393f8 commit 9f17117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion motioneye/static/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3552,7 +3552,7 @@ function getCameraIds() {
function runAlertDialog(message, onOk, options) {
var params = {
title: message,
buttons: i18n.gettext('bone'),
buttons: 'ok',
onOk: onOk
};

Expand Down

0 comments on commit 9f17117

Please sign in to comment.