-
Notifications
You must be signed in to change notification settings - Fork 231
Fix issue #1863, kve sort quirks, and bump ng-sortable #1962
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix issue #1863, kve sort quirks, and bump ng-sortable #1962
Conversation
- issue openshift#1863 could not pull second-to-last env var below last env var in kve - issue openshift#620 possibly helped (?) - bugzilla #1428991 reordering env vars down only works by twos - example: third moves to fifth, then seventh - bugzilla #1369315 possibly helped (?) I've mentioned 2 additional issues that may be helped by this fix as many quirky behaviors seem to resolve. That said, I will test more before closing them.
dist/scripts/scripts.js
Outdated
@@ -13497,10 +13497,13 @@ uniqueForKey: r.uniqueForKey, | |||
uniqueForValue: r.uniqueForValue, | |||
dragControlListeners: { | |||
accept: function(e, t) { | |||
return e.itemScope.sortableScope.$id === t.$id; | |||
return console.log("accept?"), e.itemScope.sortableScope.$id === t.$id; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there is some debug logging in the dist
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yup! got it.
Rebased. This one is def improvements on kve behavior. |
[merge] |
@benjaminapetersen Can you test which are the bugs are really fixed so we can update the Bugzilla status? |
Evaluated for origin web console merge up to 1d03b58 |
Origin Web Console Merge Results: SUCCESS (https://ci.openshift.redhat.com/jenkins/job/merge_pull_request_origin_web_console/85/) (Base Commit: c6ac85f) (PR Branch Commit: 1d03b58) |
@spadgett yup. I think the ones with the (?) are not sufficient, but the other ones are good. I'll give them another test run to make sure. |
I've mentioned 2 additional issues that may be helped by this fix as many quirky behaviors seem to resolve. That said, I will test more before closing them.
@rhamilto @spadgett