Skip to content

Commit

Permalink
v1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sganis committed Oct 3, 2023
1 parent 4b2462c commit 377c971
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def run(cmd):
assert version

print(f'deploying v{version}...')
run('call npm --prefix ./frontend run build')
run('npm --prefix ./frontend run build')
run('git add ./frontend')
run(f'git commit -am "v{version}"')
run(f'git tag -a v{version} -m v{version}')
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pyme</title>
<script type="module" crossorigin src="/assets/index-f567f7f4.js"></script>
<script type="module" crossorigin src="/assets/index-a2eecb2f.js"></script>
<link rel="stylesheet" href="/assets/index-01748d3a.css">
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "client",
"private": true,
"version": "1.0.7",
"version": "1.0.8",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
13 changes: 6 additions & 7 deletions frontend/src/routes/Order.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -284,12 +284,6 @@
{/each}

<div class="row">
<div class="col">
<button class="btn btn-light mt-4" id="plus"
on:click|preventDefault={addItem}>
<i class="bi-plus-lg"/>
</button>
</div>
<div class="col">
<label for="price" class="form-label">Total Price</label>
<input type="text" pattern="\d*"
Expand All @@ -298,10 +292,15 @@
class="form-control" id="price"
min="1" max="10000">
</div>
<div class="col text-end">
<button class="btn btn-light mt-4" id="plus"
on:click|preventDefault={addItem}>
<i class="bi-plus-lg"/>
</button>
</div>
</div>

<div class="row">
<div class="col"></div>
<div class="col">
<div class="form-check">
<input class="form-check-input" type="checkbox"
Expand Down

0 comments on commit 377c971

Please sign in to comment.