-
Notifications
You must be signed in to change notification settings - Fork 43
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 frame selection bugs #1256
Fix frame selection bugs #1256
Conversation
We don't want to commit the package-lock.json file because of the way girder builds things. |
import { nextTick } from 'vue'; | ||
import { makeDraggableSVG } from '../utils/drag'; | ||
import {restRequest} from '@girder/core/rest'; | ||
import {nextTick} from 'vue'; // eslint-disable-line |
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.
We could also do import Vue from 'vue';
and then use Vue.nextTick
instead of nextTick
, if you think that is better than the eslint disable.
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.
Ok, I like that better, thanks! Changed in 1617726
This PR fixes several bugs within the frame selection widget; each bug is described in the commit message that provides the respective fix.