Skip to content

Commit a47b8a4

Browse files
authored
Merge pull request #151 from cupcakearmy/150-type-button
150 type button
2 parents 14d3e9e + 847fc96 commit a47b8a4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
"npm-run-all": "^4.1.5",
1818
"shelljs": "^0.8.5"
1919
},
20-
"packageManager": "pnpm@9.9.0"
20+
"packageManager": "pnpm@9.11.0"
2121
}

packages/backend/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/backend/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cryptgeon"
3-
version = "2.8.1"
3+
version = "2.8.2"
44
authors = ["cupcakearmy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.80"

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cryptgeon",
3-
"version": "2.8.1",
3+
"version": "2.8.2",
44
"homepage": "https://github.com/cupcakearmy/cryptgeon",
55
"repository": {
66
"type": "git",

packages/frontend/src/lib/ui/Icon.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
export let icon: keyof typeof map
1919
</script>
2020

21-
<button on:click {...$$restProps}>
21+
<button type="button" on:click {...$$restProps}>
2222
{#if map[icon]}
2323
<svelte:component this={map[icon]} />
2424
{/if}

0 commit comments

Comments
 (0)