Conversation
…778) * Fix delay with config-based A/B testing api initiation Resolves: [MWPW-194995(https://jira.corp.adobe.com/browse/MWPW-194995) **Test URLs:** - Before: https://stage--da-dc--adobecom.aem.page/acrobat/online/compress-pdf?martech=off&unitylibs=stage - After: https://stage--da-dc--adobecom.aem.page/acrobat/online/compress-pdf?martech=off&unitylibs=target-test **Implementation details:** `this.pageConfigPromise = null (line 189)` initializes the field so it's always defined on the instance. `this.pageConfigPromise = this.ensurePageConfig() `(line 792, inside initActionListeners when b === this.block) fires the fetch the moment the verb-widget finishes rendering (for performance reasons), no await so it doesn't block listener setup. The promise is stored so it can be joined later. `await (this.pageConfigPromise || this.ensurePageConfig()) `(line 580, in handleFileUpload) if the widget has rendered (normal path), we await the already in flight or resolved promise; if somehow pageConfigPromise is null (edge case: upload triggered before initActionListeners ran with the block), we fall back to calling it directly. The existing pageConfigFetched guard inside ensurePageConfig still prevents double execution. --------- Co-authored-by: Arushi Gupta <65466846+arugupta1992@users.noreply.github.com> Co-authored-by: Arushi Gupta <arugupta@Arushis-MacBook-Pro.local> Co-authored-by: Sanjay Saravanan <75960494+sanjayms01@users.noreply.github.com> Co-authored-by: Vipul Gupta <vipugpta@gmail.com> Co-authored-by: vipulg <vipulg@adobe.com> Co-authored-by: Nishant Thakur <nishant.thakur.ece@gmail.com> Co-authored-by: Ratko Zagorac <90400759+zagi25@users.noreply.github.com> Co-authored-by: Manasvi Agrawal <maagrawal@adobe.com>
<!-- Before submitting, please review all open PRs. --> * Onboard resume builder Resolves: [MWPW-196557](https://jira.corp.adobe.com/browse/MWPW-196557) **Test URLs:** - Before: https://mwpw-196281--da-dc--adobecom.aem.page/acrobat/online/test/unity/resume-builder-copy?martech=off&unitylibs=stage - After: https://mwpw-196281--da-dc--adobecom.aem.page/acrobat/online/test/unity/resume-builder-copy?martech=off&unitylibs=resume-builder Note: his has to be tested once unity backend is also on stage --------- Co-authored-by: Ruchika Sinha <tek10248@Ruchikas-MacBook-Pro.local>
<!-- Before submitting, please review all open PRs. --> * Allow word doc file for resume-builder verb Resolves: [MWPW-NUMBER](https://jira.corp.adobe.com/browse/MWPW-NUMBER) **Test URLs:** - Before: https://stage--da-dc--adobecom.aem.page/acrobat/online/ai-resume-builder?martech=off&unitylibs=stage&app!versions=latest - After: https://stage--da-dc--adobecom.aem.page/acrobat/online/ai-resume-builder?martech=off&unitylibs=resume-builder-word-doc&app!versions=latest
|
Hello, I'm the AEM Code Sync Bot and I will run some actions to deploy your branch and validate page speed.
|
sanjayms01
approved these changes
Jun 16, 2026
Collaborator
|
Validated from A.com side. All looks fine. Test results are in the task: MWPW-198704 |
arugupta1992
approved these changes
Jun 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves: MWPW-197381
Test URLs:
Before: https://resume-builder--da-express-milo--adobecom.aem.page/drafts/methomas/express/create/resume?unitylibs=stage
After: https://resume-builder--da-express-milo--adobecom.aem.page/drafts/methomas/express/create/resume?unitylibs=express-2
New
verb-dropzoneblock for Express pages — renders a dropzone area with upload button, drag-hint text, file limit text, and legal footer authored via the Unity block.Testing Notes:
Drag & Drop
document.body(not scoped to a div), so dropping a file anywhere on the page triggers upload while the dropzone is in the viewport.IntersectionObserver— dropping a file when the dropzone is scrolled out of view should not trigger upload.File Input (Click to Upload)
image/jpeg, image/jpg, image/png, image/webp.Redirect Query Param (
x_api_client_location)x_api_client_locationcomputed from the page path: strips/express/prefix, reverses path segments, joins with_./express/create/resume→x_api_client_location=resume_createTransition Screen
/express/unity/splashscreenfragment, mounted onbody).User logged in status
Regression