diff options
author | 2021-07-19 18:23:39 -0700 | |
---|---|---|
committer | 2021-07-19 18:23:39 -0700 | |
commit | a7e66666e49e3286639439cc993869b3a87ff251 (patch) | |
tree | e7d33647bdc5099a5b23268aab11fcae3d78628b /examples/portfolio/src | |
parent | 11100d62ef02a90ea9d0615b942e8839adc0ea45 (diff) | |
download | astro-a7e66666e49e3286639439cc993869b3a87ff251.tar.gz astro-a7e66666e49e3286639439cc993869b3a87ff251.tar.zst astro-a7e66666e49e3286639439cc993869b3a87ff251.zip |
tsconfig fix (#752)
Diffstat (limited to 'examples/portfolio/src')
-rw-r--r-- | examples/portfolio/src/layouts/project.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/portfolio/src/layouts/project.astro b/examples/portfolio/src/layouts/project.astro index 3ef6d1b88..8e649ee1f 100644 --- a/examples/portfolio/src/layouts/project.astro +++ b/examples/portfolio/src/layouts/project.astro @@ -6,7 +6,7 @@ import Nav from '../components/Nav/index.jsx'; const { content } = Astro.props; --- -<html lang={ content.lang ?? 'en' }> +<html lang={ content.lang || 'en' }> <head> <MainHead title={content.title} /> <style lang="scss"> |