Browse Source

Task/disable zoom in PWA (#5735)

* Disable zoom in PWA

* Update changelog
pull/5738/head
steffenrapp 5 days ago
committed by GitHub
parent
commit
02ef4dc8d9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      CHANGELOG.md
  2. 2
      apps/client/src/index.html

6
CHANGELOG.md

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Changed
- Disabled zoom in PWA
## 2.208.0 - 2025-10-11
### Added

2
apps/client/src/index.html

@ -13,7 +13,7 @@
<meta content="${rootUrl}/${featureGraphicPath}" name="twitter:image" />
<meta content="${title}" name="twitter:title" />
<meta
content="initial-scale=1, viewport-fit=cover, width=device-width"
content="initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover, width=device-width"
name="viewport"
/>
<meta content="#FFFFFF" name="theme-color" />

Loading…
Cancel
Save