mirror of
https://github.com/upscayl/upscayl.git
synced 2026-04-25 03:00:05 -04:00
Improved logging
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user