working on sensors and rules

This commit is contained in:
2026-02-19 20:37:17 -06:00
parent a1b9b8d2b1
commit f9cfcf8f40
31 changed files with 1316 additions and 586 deletions

View File

@@ -53,7 +53,7 @@ export default function PackInstallPage() {
result.data.tests_skipped
? "Tests were skipped."
: result.data.test_result
? `Tests ${result.data.test_result.status}: ${result.data.test_result.passed}/${result.data.test_result.total_tests} passed.`
? `Tests ${result.data.test_result.status}: ${result.data.test_result.passed}/${result.data.test_result.totalTests} passed.`
: ""
}`,
);
@@ -138,8 +138,7 @@ export default function PackInstallPage() {
any git server
</li>
<li>
<strong>Archive URL</strong> - Download from .zip or .tar.gz
URL
<strong>Archive URL</strong> - Download from .zip or .tar.gz URL
</li>
<li>
<strong>Pack Registry</strong> - Install from configured
@@ -192,8 +191,7 @@ export default function PackInstallPage() {
{/* Source Type Selection */}
<div>
<label className="block text-sm font-medium text-gray-700 mb-2">
Installation Source Type{" "}
<span className="text-red-500">*</span>
Installation Source Type <span className="text-red-500">*</span>
</label>
<div className="grid grid-cols-3 gap-3">
<button

View File

@@ -39,7 +39,7 @@ export default function PackRegisterPage() {
result.data.tests_skipped
? "Tests were skipped."
: result.data.test_result
? `Tests ${result.data.test_result.status}: ${result.data.test_result.passed}/${result.data.test_result.total_tests} passed.`
? `Tests ${result.data.test_result.status}: ${result.data.test_result.passed}/${result.data.test_result.totalTests} passed.`
: ""
}`,
);