diff options
author | 2021-10-18 12:40:22 -0500 | |
---|---|---|
committer | 2021-10-18 19:40:22 +0200 | |
commit | a788a876f8234d6680a637964e32330a8c1a398e (patch) | |
tree | 41e4a85625a40ca1f3d21f5d91d81c4b11affab9 /www/src/components/Note.astro | |
parent | 90618131cc591f5800f6ef373df6a8aece14701d (diff) | |
download | astro-a788a876f8234d6680a637964e32330a8c1a398e.tar.gz astro-a788a876f8234d6680a637964e32330a8c1a398e.tar.zst astro-a788a876f8234d6680a637964e32330a8c1a398e.zip |
Fix mismatched props in `www` (#1574)
Diffstat (limited to 'www/src/components/Note.astro')
-rw-r--r-- | www/src/components/Note.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/src/components/Note.astro b/www/src/components/Note.astro index 12fc396bc..abbdb987b 100644 --- a/www/src/components/Note.astro +++ b/www/src/components/Note.astro @@ -1,6 +1,6 @@ --- export interface Props { - title: string; + title?: string; type?: 'tip' | 'warning' | 'error' } const { type = 'tip', title } = Astro.props; |