mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
docs(web): add missing full stops to match the rest of the webui (#249)
This commit is contained in:
parent
4b7a6d4419
commit
e5a95415a1
3 changed files with 5 additions and 5 deletions
|
@ -63,7 +63,7 @@ export const Logs = () => {
|
||||||
className="h-5 w-5 text-yellow-400"
|
className="h-5 w-5 text-yellow-400"
|
||||||
aria-hidden="true"
|
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>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
@ -78,13 +78,13 @@ export const Logs = () => {
|
||||||
/>
|
/>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label="Indent log lines"
|
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}
|
value={settings.indentLogLines}
|
||||||
setValue={(newValue) => onSetValue("indentLogLines", newValue)}
|
setValue={(newValue) => onSetValue("indentLogLines", newValue)}
|
||||||
/>
|
/>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label="Hide wrapped text"
|
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}
|
value={settings.hideWrappedText}
|
||||||
setValue={(newValue) => onSetValue("hideWrappedText", newValue)}
|
setValue={(newValue) => onSetValue("hideWrappedText", newValue)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -113,7 +113,7 @@ function ApplicationSettings() {
|
||||||
<div className="px-4 sm:px-6 py-1">
|
<div className="px-4 sm:px-6 py-1">
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label="Dark theme"
|
label="Dark theme"
|
||||||
description="Switch between dark and light theme"
|
description="Switch between dark and light theme."
|
||||||
value={settings.darkTheme}
|
value={settings.darkTheme}
|
||||||
setValue={(newValue: boolean) => setSettings({
|
setValue={(newValue: boolean) => setSettings({
|
||||||
...settings,
|
...settings,
|
||||||
|
|
|
@ -24,7 +24,7 @@ function NotificationSettings() {
|
||||||
<div className="ml-4 mt-4">
|
<div className="ml-4 mt-4">
|
||||||
<h3 className="text-lg leading-6 font-medium text-gray-900 dark:text-white">Notifications</h3>
|
<h3 className="text-lg leading-6 font-medium text-gray-900 dark:text-white">Notifications</h3>
|
||||||
<p className="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
<p className="mt-1 text-sm text-gray-500 dark:text-gray-400">
|
||||||
Send notifications on events
|
Send notifications on events.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="ml-4 mt-4 flex-shrink-0">
|
<div className="ml-4 mt-4 flex-shrink-0">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue