Update ElectronPlatform.tsx (#22976)

pull/22996/head
Michael Telatynski 2022-08-02 16:11:59 +01:00 committed by GitHub
parent 394907fb7a
commit 6d3c49d866
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -237,7 +237,11 @@ export default class ElectronPlatform extends VectorBasePlatform {
}
public needsUrlTooltips(): boolean {
return true;
// XXX: This should be `true` but caused too many regressions
// Given it was effectively a community contribution, it has been disabled until we can fix it
// https://github.com/vector-im/element-web/issues/22970
// https://github.com/vector-im/element-web/issues/22953
return false;
}
public async getAppVersion(): Promise<string> {