Skip to content

Commit 808c7fd

Browse files
committed
Add capacity assignment migration
1 parent a66add4 commit 808c7fd

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Support\Facades\DB;
5+
6+
return new class extends Migration {
7+
public function up(): void
8+
{
9+
DB::update(
10+
"UPDATE capacity_assignments SET applies_to = 'PRODUCTS' WHERE applies_to = 'TICKETS';"
11+
);
12+
}
13+
14+
public function down(): void
15+
{
16+
DB::update(
17+
"UPDATE capacity_assignments SET applies_to = 'TICKETS' WHERE applies_to = 'PRODUCTS';"
18+
);
19+
}
20+
};

frontend/src/components/layouts/Checkout/Checkout.module.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
.actionBar {
4444
padding: var(--tk-spacing-md);
4545
width: 100%;
46+
47+
.title {
48+
font-size: 1.2em;
49+
font-weight: 500;
50+
}
4651
}
4752

4853
h1 {

frontend/src/components/layouts/Checkout/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const Checkout = () => {
4949
{!isMobile && t`Event Homepage`}
5050
</Button>
5151

52-
<span>
52+
<span className={classes.title}>
5353
{order.status === 'RESERVED' && t`Checkout`}
5454
{order.status === 'COMPLETED' && t`Your Order`}
5555
</span>

0 commit comments

Comments
 (0)