fix errors due to selects no longer having an id by default

This commit is contained in:
Isaac Connor 2020-09-05 17:33:17 -04:00
parent c5e4a964cd
commit 034bee9bb2
1 changed files with 3 additions and 3 deletions

View File

@ -189,15 +189,15 @@ if ( canEdit('Events') ) {
<div id="exportEvent"><button type="button" data-on-click="exportEvent"><?php echo translate('Export') ?></button></div> <div id="exportEvent"><button type="button" data-on-click="exportEvent"><?php echo translate('Export') ?></button></div>
<div id="replayControl"> <div id="replayControl">
<label for="replayMode"><?php echo translate('Replay') ?></label> <label for="replayMode"><?php echo translate('Replay') ?></label>
<?php echo htmlSelect('replayMode', $replayModes, $replayMode, array('data-on-change'=>'changeReplayMode')); ?> <?php echo htmlSelect('replayMode', $replayModes, $replayMode, array('data-on-change'=>'changeReplayMode','id'=>'replayMode')); ?>
</div> </div>
<div id="scaleControl"> <div id="scaleControl">
<label for="scale"><?php echo translate('Scale') ?></label> <label for="scale"><?php echo translate('Scale') ?></label>
<?php echo htmlSelect('scale', $scales, $scale, array('data-on-change'=>'changeScale')); ?> <?php echo htmlSelect('scale', $scales, $scale, array('data-on-change'=>'changeScale','id'=>'scale')); ?>
</div> </div>
<div id="codecControl"> <div id="codecControl">
<label for="codec"><?php echo translate('Codec') ?></label> <label for="codec"><?php echo translate('Codec') ?></label>
<?php echo htmlSelect('codec', $codecs, $codec, array('data-on-change'=>'changeCodec')); ?> <?php echo htmlSelect('codec', $codecs, $codec, array('data-on-change'=>'changeCodec','id'=>'codec')); ?>
</div> </div>
</div> </div>
</div> </div>