docs(web): add missing full stops to match the rest of the webui (#249)

This commit is contained in:
soup 2022-04-16 14:16:23 +02:00 committed by GitHub
parent 4b7a6d4419
commit e5a95415a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -63,7 +63,7 @@ export const Logs = () => {
className="h-5 w-5 text-yellow-400"
aria-hidden="true"
/>
<p className="ml-2 text-sm text-gray-800 dark:text-gray-400">This only shows new logs, no history</p>
<p className="ml-2 text-sm text-gray-800 dark:text-gray-400">This only shows new logs, no history.</p>
</div>
</div>
</header>
@ -78,13 +78,13 @@ export const Logs = () => {
/>
<Checkbox
label="Indent log lines"
description="Indent each log line according to their respective starting position"
description="Indent each log line according to their respective starting position."
value={settings.indentLogLines}
setValue={(newValue) => onSetValue("indentLogLines", newValue)}
/>
<Checkbox
label="Hide wrapped text"
description="Hides text that is meant to be wrapped"
description="Hides text that is meant to be wrapped."
value={settings.hideWrappedText}
setValue={(newValue) => onSetValue("hideWrappedText", newValue)}
/>