File tree 3 files changed +20
-9
lines changed
async-components/structures
3 files changed +20
-9
lines changed Original file line number Diff line number Diff line change @@ -78,17 +78,26 @@ const CompatibilityView: React.FC<IProps> = ({ onAccept }) => {
78
78
< div >
79
79
< h2 id = "step2_heading" > Use Element on mobile</ h2 >
80
80
< p > < strong > iOS</ strong > (iPhone or iPad)</ p >
81
- < a href = "https://apps.apple.com/app/vector/id1083446067" target = "_blank"
82
- className = "mx_ClearDecoration" >
81
+ < a
82
+ href = "https://apps.apple.com/app/vector/id1083446067"
83
+ target = "_blank"
84
+ className = "mx_ClearDecoration"
85
+ >
83
86
< img height = "48" src = "themes/element/img/download/apple.svg" alt = "Apple App Store" />
84
87
</ a >
85
88
< p className = "mx_Spacer" > < strong > Android</ strong > </ p >
86
- < a href = "https://play.google.com/store/apps/details?id=im.vector.app" target = "_blank"
87
- className = "mx_ClearDecoration" >
89
+ < a
90
+ href = "https://play.google.com/store/apps/details?id=im.vector.app"
91
+ target = "_blank"
92
+ className = "mx_ClearDecoration"
93
+ >
88
94
< img height = "48" src = "themes/element/img/download/google.svg" alt = "Google Play Store" />
89
95
</ a >
90
- < a href = "https://f-droid.org/repository/browse/?fdid=im.vector.app" target = "_blank"
91
- className = "mx_ClearDecoration" >
96
+ < a
97
+ href = "https://f-droid.org/repository/browse/?fdid=im.vector.app"
98
+ target = "_blank"
99
+ className = "mx_ClearDecoration"
100
+ >
92
101
< img height = "48" src = "themes/element/img/download/fdroid.svg" alt = "F-Droid" />
93
102
</ a >
94
103
</ div >
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ See the License for the specific language governing permissions and
17
17
limitations under the License.
18
18
*/
19
19
20
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
20
21
// @ts -ignore
21
22
import olmWasmPath from "olm/olm.wasm" ;
22
23
import Olm from 'olm' ;
@@ -127,6 +128,7 @@ export async function loadSkin() {
127
128
import (
128
129
/* webpackChunkName: "riot-web-component-index" */
129
130
/* webpackPreload: true */
131
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
130
132
// @ts -ignore - this module is generated so may fail lint
131
133
"../component-index" ) ,
132
134
] ) ;
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ import BaseEventIndexManager, {
27
27
MatrixEvent ,
28
28
MatrixProfile ,
29
29
SearchArgs ,
30
- SearchResult
30
+ SearchResult ,
31
31
} from 'matrix-react-sdk/src/indexing/BaseEventIndexManager' ;
32
32
import dis from 'matrix-react-sdk/src/dispatcher/dispatcher' ;
33
33
import { _t , _td } from 'matrix-react-sdk/src/languageHandler' ;
@@ -99,7 +99,7 @@ interface IPCPayload {
99
99
100
100
class SeshatIndexManager extends BaseEventIndexManager {
101
101
private pendingIpcCalls : Record < number , { resolve , reject } > = { } ;
102
- private nextIpcCallId : number = 0 ;
102
+ private nextIpcCallId = 0 ;
103
103
104
104
constructor ( ) {
105
105
super ( ) ;
@@ -216,7 +216,7 @@ class SeshatIndexManager extends BaseEventIndexManager {
216
216
export default class ElectronPlatform extends VectorBasePlatform {
217
217
private eventIndexManager : BaseEventIndexManager = new SeshatIndexManager ( ) ;
218
218
private pendingIpcCalls : Record < number , { resolve , reject } > = { } ;
219
- private nextIpcCallId : number = 0 ;
219
+ private nextIpcCallId = 0 ;
220
220
// this is the opaque token we pass to the HS which when we get it in our callback we can resolve to a profile
221
221
private ssoID : string = randomString ( 32 ) ;
222
222
You can’t perform that action at this time.
0 commit comments