Skip to content

Commit

Permalink
Switch user facing warning to console warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bctcvai committed Oct 30, 2024
1 parent b4a9466 commit 10a3de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/js/annotation/video-settings-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ export class VideoSettingsDialog extends ModalDialog {
resA.size === resB.size ||
[...resA].every((value) => resB.has(value));
if (!sameResolutions) {
Utilities.warningAlert("Videos do not have the same resolutions!");
console.warn("Videos do not have the same resolutions!");
break;
}
}
Expand Down

0 comments on commit 10a3de3

Please sign in to comment.