Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ databaseChangeLog:
- sql:
sql: >
INSERT INTO products (organization_id, category_id, name, description, base_price, min_price, max_price)
SELECT 2, c.id, 'Vodka Juice', 'Vodka mahlaga', 5.00, 4.50, 7.50
SELECT 2, c.id, 'Vodka Juice', 'Vodka mahlaga', 4.50, 4.00, 7.00
FROM categories c WHERE c.organization_id = 2 AND c.name = 'Kokteilid';
- sql:
sql: >
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.9"
#version: "3.9"
services:
postgres:
image: postgres:17
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/(protected)/client/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export default function ClientProductsByCategory() {

<section className="rounded-2xl bg-[#1b1830] border border-[#2a2640] p-4 flex flex-col basis-2/3">
<div className="mb-3 flex items-center justify-between">
<h2 className="text-lg md:text-xl font-semibold tracking-wide">
<h2 className="text-lg md:text-xl font-semibold tracking-wide text-purple-400">
Products by Category
</h2>
</div>
Expand Down