Improved logging

This commit is contained in:
Feenix
2023-04-14 16:01:37 +05:30
parent 6fd1a46b37
commit f163685b8c
6 changed files with 77 additions and 47 deletions

View File

@@ -221,14 +221,19 @@ function SettingsTab({
</div>
<div>
<p className="text-sm font-medium">Custom Model Scale:</p>
<div>
<p className="badge-primary badge text-xs font-medium">
EXPERIMENTAL
</p>
<p className="text-sm font-medium">Custom Model Scale:</p>
</div>
<input
type="range"
min="2"
max="4"
value={scale}
onChange={(e: any) => {
setScale(e.target.value);
setScale(e.target.value.toString());
}}
step="1"
className="range range-primary mt-2"