- Issue created by @phenaproxima
- πΊπΈUnited States phenaproxima Massachusetts
Let's start with a test first here; it might have been incidentally fixed by π Move load() function of ProjectBrowser.svelte into a new window-scoped class Active . But we should have a test either way!
- πΊπΈUnited States phenaproxima Massachusetts
I've confirmed with manual testing that this bug persists even after π Move load() function of ProjectBrowser.svelte into a new window-scoped class Active , so it didn't get fixed incidentally.
Let's get a test going!
- πΊπΈUnited States phenaproxima Massachusetts
To help with fixing the actual bug, I think the problem is probably this bit of
InstallListProcessor.js
:for (const project of currentInstallList) { if(!project.error) { project.status = 'active'; } }
There are a couple of things wrong with this.
- It's checking for
project.error
value which is not defined from the backend and never exists. - It assumes that if the activation request finished at all, the project is installed.
I suspect that just deleting this bit will, by itself, fix the bug. But we still need a test.
- It's checking for
- πΊπΈUnited States phenaproxima Massachusetts
Confirmed in manual testing that the bug is indeed fixed by deleting that snippet. There's our fix!
- First commit to issue fork.
- Merge request !759Issue #3508971: Don't set project status to active if there is an activation error β (Merged) created by phenaproxima
- πΊπΈUnited States phenaproxima Massachusetts
The test is catching the bug: https://git.drupalcode.org/issue/project_browser-3508971/-/jobs/4508043#...
This is completely ready for review. Assigning to @chrisfromredfin for that!
- First commit to issue fork.
-
chrisfromredfin β
committed 3848d355 on 2.0.x authored by
phenaproxima β
Issue #3508971 by phenaproxima, utkarsh_33, chrisfromredfin: If there is...
-
chrisfromredfin β
committed 3848d355 on 2.0.x authored by
phenaproxima β
Automatically closed - issue fixed for 2 weeks with no activity.