Workflow Editor will not popup when clicking "WORKFLOW EDITOR" button...
workflow editor page should show after clicking "WORKFLOW EDITOR" button
Nothing would happen after clicking "WORKFLOW EDITOR" button


Was just about to post this same error.
Seems to be from 1.0.2.301 onwards, can confirm the error doesn't appear in 1.0.2.298.
Browsers:
After clicking "Workflow Editor" button the path at the top changes to "templates.editWorkflowJobTemplate.workflowMaker"

I receiving same as you @tvigers on a new AWX install
Browsers:
safari 11.0.2 (13604.4.7.1.3
Chrome Version 63.0.3239.84
MacOS 10.13.2
The issue comes from how jquery-ui is imported.
v1.12 needs requires of every different components one by one.
as a quick fix, you can add:
require('jquery-ui/ui/widgets/dialog');
require('jquery-ui/ui/widgets/slider');
require('jquery-ui/ui/widgets/spinner');
right after the require('jquery-ui') in awx/ui/client/src/vendor.js and rebuild the frontend
@mabashian
Same issue still exists in AWX 1.0.2.307, can you please take a look?

Update 1.0.2.307 doesn't fix this for me either
As per the others, 1.0.2.307 seems to still has this issue.
Edit:
Using the docker option to pull from source, I was able to get this working. The reported version is AWX 1.0.2.301
To pursue this option, I simply commended out two lines in my inventory.yml in my install directory:
dockerhub_base=ansible
dokcerhub_version=latest
Afterwards, I stopped and removed my docker containers:
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker ps -a -q)
Finally, I ran the playbook from the install directory again:
ansible-playbook -i inventory install.yml
After several minutes, AWX was made available. Please note: in my testing, I was able to retain projects, job templates, etc...
I reverted back to 301 and couldn't seem to get it working. I can get it to work by going to 289 though
I didn't revert back to 301. I used the option to build the docker containers instead of pull. With that being said, the _reported_ version is 301 (which seems odd). Regardless, this method worked for me.
Also, the dockerhub images were updated yesterday. May be worth trying again
Ah yes I see what you mean, That's weird that it reports as .301 in the end as my upgrade process includes deleting all containers, maybe commenting out those lines causes it to not pull the latest version?
A general glance at some of the output looked like it was pulling from Github.. With that being said, it may not have been the latest branch.
I'm at 1.0.2.303, here you are my tests.
Hoping to help other people, here you are the steps to upgrade/downgrade dockerhub version/tag. This is what I mean when I say "revert to" or "upgrade to".
docker exec postgres pg_dump -U postgres -F t awx > /tmp/awx_backup_1.0.2.303_20180104.sqldocker rm -f $(docker ps -a -q)
docker rmi imagesID
#dockerhub_version=latest
dockerhub_version=1.0.2.289 #or whatever version/tag you need
ansible-playbook -i inventory install.ymlawx-manage showmigrations shows everything went finecan confirm this is fixed in 1.0.2.327 version of docker image for me
Most helpful comment
Was just about to post this same error.
Seems to be from 1.0.2.301 onwards, can confirm the error doesn't appear in 1.0.2.298.
Browsers:
After clicking "Workflow Editor" button the path at the top changes to "templates.editWorkflowJobTemplate.workflowMaker"
