0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-08 09:42:43 +00:00

Change spaces to tabs

This commit is contained in:
Trevor Buckner
2024-09-04 00:52:08 -04:00
parent a1e585ccaa
commit 4f39222724

View File

@@ -160,7 +160,7 @@ const VaultPage = (props) => {
title="At least 3 characters" title="At least 3 characters"
onKeyDown={(e) => { onKeyDown={(e) => {
if (e.key === 'Enter' && !submitButtonRef.current.disabled) if (e.key === 'Enter' && !submitButtonRef.current.disabled)
loadPage(1, true); loadPage(1, true);
}} }}
placeholder="v3 Reference Document" placeholder="v3 Reference Document"
/> />
@@ -177,7 +177,7 @@ const VaultPage = (props) => {
onKeyUp={disableSubmitIfFormInvalid} onKeyUp={disableSubmitIfFormInvalid}
onKeyDown={(e) => { onKeyDown={(e) => {
if (e.key === 'Enter' && !submitButtonRef.current.disabled) if (e.key === 'Enter' && !submitButtonRef.current.disabled)
loadPage(1, true); loadPage(1, true);
}} }}
placeholder="Username" placeholder="Username"
/> />
@@ -232,24 +232,21 @@ const VaultPage = (props) => {
<h3>Tips and tricks</h3> <h3>Tips and tricks</h3>
<ul> <ul>
<li> <li>
Only <b>published</b> brews are searchable via this tool Only <b>published</b> brews are searchable via this tool
</li> </li>
<li> <li>
Usernames are case sensitive, make sure you are writing Usernames are case-sensitive
it correctly
</li> </li>
<li> <li>
Use <code>"word"</code> to match an exact string, and Use <code>"word"</code> to match an exact string,
<code>-</code> to exclude words (at least one word and <code>-</code> to exclude words (at least one word must not be negated)
must not be negated).
</li> </li>
<li> <li>
Some common words like "a", "after", "through", "itself", "here", etc., Some common words like "a", "after", "through", "itself", "here", etc.,
are ignored in searches. The full list can be found &nbsp; are ignored in searches. The full list can be found &nbsp;
<a href="https://github.com/mongodb/mongo/blob/0e3b3ca8480ddddf5d0105d11a94bd4698335312/src/mongo/db/fts/stop_words_english.txt"> <a href="https://github.com/mongodb/mongo/blob/0e3b3ca8480ddddf5d0105d11a94bd4698335312/src/mongo/db/fts/stop_words_english.txt">
here here
</a> </a>
</li> </li>
</ul> </ul>
</legend> </legend>