feat(ui): replace configuration editors with graphical forms
CI / javascript-check (push) Successful in 14s
CI / container-policy (push) Successful in 4s
CI / python-tests (push) Successful in 1m48s
CI / container-verify (push) Skipped
CI / container-publish (push) Successful in 49s

This commit is contained in:
BartelLuis
2026-09-14 21:52:39 +02:00
parent 9a6dea34c4
commit 7b979e6243
22 changed files with 1603 additions and 81 deletions
+4 -1
View File
@@ -62,7 +62,10 @@ jobs:
node-version: "24"
package-manager-cache: false
- name: Check JavaScript syntax
run: node --check provisioner/static/app.js
run: |
for script in provisioner/static/*.js; do
node --check "$script"
done
container-policy:
runs-on: ${{ vars.AIS_RUNNER_LABEL || 'ubuntu-latest' }}