Skip to content

Commit

Permalink
Merge pull request #11 from sitecrafting/feature/fixDefaultDidYouMean
Browse files Browse the repository at this point in the history
Set did you mean feature to disabled by default
  • Loading branch information
sbentleySC authored Apr 21, 2022
2 parents 67ee678 + 07863f1 commit 009b6a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/settings-meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<label for="sitka_search_instead_enabled">Enable</label>
</div>
<div class="sitka-field__dym-option">
<input type="radio" id="sitka_search_instead_enabled" name="sitka_search_instead_enabled" value="disabled"<?= $data['sitka_search_instead_enabled'] === 'disabled' ? 'checked' : '' ?>>
<input type="radio" id="sitka_search_instead_enabled" name="sitka_search_instead_enabled" value="disabled"<?= $data['sitka_search_instead_enabled'] !== 'enabled' ? 'checked' : '' ?>>
<label for="sitka_search_instead_enabled">Disable</label>
</div>
<p>When enabled, Sitka will present a link to override automatic typo correction.</p>
Expand Down

0 comments on commit 009b6a7

Please sign in to comment.