Skip to content

Commit

Permalink
Merge pull request #752 from SlateFoundation/fix/clone-select-clears-…
Browse files Browse the repository at this point in the history
…text-after-query

fix: correct text clearing issue in task selector
  • Loading branch information
acouch authored Dec 16, 2022
2 parents 2f8fd06 + 8f87b66 commit 6a1e53e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sencha-workspace/packages/slate-cbl/src/field/TaskSelector.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Ext.define('Slate.cbl.field.TaskSelector', {
extend: 'Slate.cbl.field.ClearableSelector',
xtype: 'slate-cbl-taskselector',
requires: [
'Slate.cbl.store.tasks.Tasks'
'Slate.cbl.model.tasks.Task'
],


Expand All @@ -18,15 +18,15 @@ Ext.define('Slate.cbl.field.TaskSelector', {
selectOnTab: false
},


store: {
type: 'slate-cbl-tasks',
model: 'Slate.cbl.model.tasks.Task',
proxy: {
type: 'slate-cbl-tasks',
summary: true,
include: ['Creator']
},
remoteSort: true,
pageSize: 30,
sorters: [{
property: 'Created',
direction: 'DESC'
Expand Down

0 comments on commit 6a1e53e

Please sign in to comment.