From c32db915357029aa47ec2bb8aad04039558fa528 Mon Sep 17 00:00:00 2001 From: Amritanshu Date: Thu, 17 Sep 2026 10:58:17 +0000 Subject: [PATCH] Fix: Product Ledger autocomplete not working. --- .gitignore | 5 ++++- .vscode/tasks.json | 2 +- Makefile | 3 +++ .../app/product-ledger/product-ledger.component.html | 12 ++++-------- 4 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 6802f04a..89fbbe6a 100644 --- a/.gitignore +++ b/.gitignore @@ -51,4 +51,7 @@ yarn-error.log* # Ignore Pyright-generated stubs *.pyi -typings/ \ No newline at end of file +typings/ + +# AI Coding agents temp files +.scratch/ \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json index f88bba6e..00e6877b 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -4,7 +4,7 @@ "tasks": [ { "type": "npm", - "script": "start -- --port 4200", + "script": "start", "isBackground": true, "options": { "cwd": "${workspaceFolder}/overlord" diff --git a/Makefile b/Makefile index 73f8e782..9cfbc8d0 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ build-production: ## Build the production container image. Usage: make build-pro @echo "Building image..." @podman manifest rm registry.tanshu.com/brewman:latest 2>/dev/null || true @podman build \ + --format docker \ --platform linux/amd64,linux/arm64 \ --manifest registry.tanshu.com/brewman:latest \ --pull \ @@ -20,6 +21,7 @@ build-check: ## Multi-arch build without push (compile check). Usage: make build @echo "Building image..." @podman manifest rm brewman:test 2>/dev/null || true @podman build \ + --format docker \ --platform linux/amd64,linux/arm64 \ --manifest brewman:test \ --pull \ @@ -33,6 +35,7 @@ build-check-local: ## Single-arch build without push (compile check). Usage: mak @echo "Building image..." @podman manifest rm brewman:test 2>/dev/null || true @podman build \ + --format docker \ --platform linux/amd64 \ --manifest brewman:test \ --no-cache \ diff --git a/overlord/src/app/product-ledger/product-ledger.component.html b/overlord/src/app/product-ledger/product-ledger.component.html index a66f45cd..138e3d8e 100644 --- a/overlord/src/app/product-ledger/product-ledger.component.html +++ b/overlord/src/app/product-ledger/product-ledger.component.html @@ -26,20 +26,16 @@
Product - + + @for (product of products(); track product.id) { + {{ product.name }} + }