Skip to content

Commit

Permalink
Fix link to readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
AchoArnold committed Dec 12, 2023
1 parent 63be4d1 commit bdd190a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export default class Home extends Vue {
}
get isInStandaloneMode(): boolean {
return (window.matchMedia('(display-mode: standalone)').matches) || (window.navigator.standalone) || document.referrer.includes('android-app://');
return (window.matchMedia('(display-mode: standalone)').matches) || ((window.navigator as any).standalone) || document.referrer.includes('android-app://');

Check warning on line 245 in web/src/views/Home.vue

View workflow job for this annotation

GitHub Actions / build_and_deploy

Replace `window.matchMedia('(display-mode:·standalone)').matches)·||·((window.navigator·as·any).standalone)·||·document.referrer.includes('android-app://'` with `⏎······window.matchMedia("(display-mode:·standalone)").matches·||⏎······(window.navigator·as·any).standalone·||⏎······document.referrer.includes("android-app://")⏎····`

Check warning on line 245 in web/src/views/Home.vue

View workflow job for this annotation

GitHub Actions / build_and_deploy

Unexpected any. Specify a different type
}
get canDownloadApp(): boolean {
Expand Down

0 comments on commit bdd190a

Please sign in to comment.