This repository was archived by the owner on Sep 11, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/components/views/dialogs/devtools
test/end-to-end-tests/src/usecases Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -74,13 +74,13 @@ const ServerInfo = ({ onBack }: IDevtoolsProps) => {
7474 }
7575
7676 < h4 > { _t ( "Client Versions" ) } </ h4 >
77- { capabilities !== FAILED_TO_LOAD
77+ { clientVersions !== FAILED_TO_LOAD
7878 ? < SyntaxHighlight language = "json" children = { JSON . stringify ( clientVersions , null , 4 ) } />
7979 : < div > { _t ( "Failed to load." ) } </ div >
8080 }
8181
8282 < h4 > { _t ( "Server Versions" ) } </ h4 >
83- { capabilities !== FAILED_TO_LOAD
83+ { serverVersions !== FAILED_TO_LOAD
8484 ? < SyntaxHighlight language = "json" children = { JSON . stringify ( serverVersions , null , 4 ) } />
8585 : < div > { _t ( "Failed to load." ) } </ div >
8686 }
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export async function redactThreadMessage(session: ElementSession): Promise<void
9292 session . log . done ( ) ;
9393
9494 await session . query ( ".mx_ThreadView .mx_RedactedBody" ) ;
95- await session . delay ( 200 ) ; // give the app a chance to settle
95+ await session . delay ( 1000 ) ; // give the app a chance to settle
9696
9797 session . log . endGroup ( ) ;
9898}
You can’t perform that action at this time.
0 commit comments