mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 03:29:16 +00:00
prevent awkward zoom in mobile text input
This commit is contained in:
parent
3fc130b5c8
commit
0a9a2a0994
@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta
|
||||
name="Databag"
|
||||
|
@ -41,7 +41,7 @@ export function useChannels() {
|
||||
}
|
||||
|
||||
let key = `${chan.id}::${chan.cardId}`
|
||||
if (store.state[key] && store.state[key] == chan.revision) {
|
||||
if (store.state[key] && store.state[key] === chan.revision) {
|
||||
chan.updated = false;
|
||||
}
|
||||
else {
|
||||
@ -51,11 +51,11 @@ export function useChannels() {
|
||||
|
||||
const setContacts = (chan) => {
|
||||
let contacts = [];
|
||||
if (chan.guid != null && profile.state.profile.guid != chan.guid) {
|
||||
if (chan.guid != null && profile.state.profile.guid !== chan.guid) {
|
||||
contacts.push(card.actions.getCardByGuid(chan.guid));
|
||||
}
|
||||
for (let guid of chan.data.channelDetail?.members) {
|
||||
if (guid != profile.state.profile.guid) {
|
||||
if (guid !== profile.state.profile.guid) {
|
||||
contacts.push(card.actions.getCardByGuid(guid));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user