This repository was archived by the owner on May 15, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -103,9 +103,9 @@ function setInputValue(inputField, inputText) {
103
103
} , 3_000 ) ;
104
104
105
105
const handleSuccessfulDispatch = ( ) => {
106
- resolve ( ) ;
107
106
window . clearTimeout ( timeoutId ) ;
108
107
inputField . removeEventListener ( "input" , handleSuccessfulDispatch ) ;
108
+ resolve ( ) ;
109
109
} ;
110
110
111
111
inputField . addEventListener ( "input" , handleSuccessfulDispatch ) ;
@@ -334,6 +334,8 @@ function hideFormForInitialSubmission() {
334
334
Can be 0 or 1. Start off invisible to avoid risks of UI flickering,
335
335
but the rest of the function should be in charge of making the form
336
336
container visible again if something goes wrong during setup.
337
+
338
+ Double dollar sign needed to avoid Terraform script false positives
337
339
*/
338
340
$${ cssOpacityVariableName } : 0;
339
341
}
@@ -346,6 +348,9 @@ function hideFormForInitialSubmission() {
346
348
*/
347
349
web-client-form,
348
350
body > div.p-overlay {
351
+ /*
352
+ Double dollar sign needed to avoid Terraform script false positives
353
+ */
349
354
opacity: calc(100% * var($${ cssOpacityVariableName } )) !important;
350
355
}
351
356
` ;
You can’t perform that action at this time.
0 commit comments