Merge branch 'next/major' of github.com:Start9Labs/start-os into feature/start-tunnel

This commit is contained in:
Aiden McClelland
2025-10-31 15:42:05 -06:00
7 changed files with 26 additions and 4 deletions

View File

@@ -22,8 +22,8 @@ import { HintPipe } from '../pipes/hint.pipe'
<textarea
placeholder="Placeholder"
tuiTextarea
[max]="6"
[min]="3"
[min]="spec.minRows"
[max]="spec.maxRows"
[attr.maxLength]="spec.maxLength"
[disabled]="!!spec.disabled"
[readOnly]="readOnly"

View File

@@ -90,7 +90,7 @@ export class CpuComponent {
readonly transform = computed(
(value = this.value()?.percentageUsed?.value || '0') =>
`rotate(${60 + (300 * Number.parseFloat(value)) / 100}deg)`,
`rotate(${60 + (240 * Number.parseFloat(value)) / 100}deg)`,
)
readonly labels = LABELS

View File

@@ -96,6 +96,8 @@ export default class GatewaysComponent {
name: this.i18n.transform('File Contents'),
default: null,
required: true,
minRows: 16,
maxRows: 16,
}),
}),
},