Koenig - Fix sticky (+) button when clicking to select card

no issue
- if the (+) button was visible and you clicked on a card to select it the cursor moved but the (+) button remained because we weren't updating the `selectedRange` property
This commit is contained in:
Kevin Ansfield 2018-02-15 15:02:37 +00:00
parent cfc32f2539
commit b3b07e488f

View File

@ -411,6 +411,7 @@ export default Component.extend({
// already handled it, e.g. on card insertion, manual card selection
if (this._skipCursorChange) {
this._skipCursorChange = false;
this.set('selectedRange', editor.range);
return;
}