Browse Source
Merge pull request #38310 from nextcloud/followup/38170/remove-former-track-by-property
fix(workflowengine): Remove unused property track-by
pull/38322/head
Joas Schilling
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
3 additions and
6 deletions
-
apps/workflowengine/src/components/Check.vue
-
apps/workflowengine/src/components/Checks/RequestUserGroup.vue
-
dist/workflowengine-workflowengine.js
-
dist/workflowengine-workflowengine.js.map
|
|
@ -4,7 +4,6 @@ |
|
|
v-model="currentOption" |
|
|
v-model="currentOption" |
|
|
:options="options" |
|
|
:options="options" |
|
|
label="name" |
|
|
label="name" |
|
|
track-by="class" |
|
|
|
|
|
:clearable="false" |
|
|
:clearable="false" |
|
|
:placeholder="t('workflowengine', 'Select a filter')" |
|
|
:placeholder="t('workflowengine', 'Select a filter')" |
|
|
@input="updateCheck" /> |
|
|
@input="updateCheck" /> |
|
|
@ -13,7 +12,6 @@ |
|
|
:options="operators" |
|
|
:options="operators" |
|
|
class="comparator" |
|
|
class="comparator" |
|
|
label="name" |
|
|
label="name" |
|
|
track-by="operator" |
|
|
|
|
|
:clearable="false" |
|
|
:clearable="false" |
|
|
:placeholder="t('workflowengine', 'Select a comparator')" |
|
|
:placeholder="t('workflowengine', 'Select a comparator')" |
|
|
@input="updateCheck" /> |
|
|
@input="updateCheck" /> |
|
|
|
|
|
@ -27,7 +27,6 @@ |
|
|
:options="groups" |
|
|
:options="groups" |
|
|
:clearable="false" |
|
|
:clearable="false" |
|
|
label="displayname" |
|
|
label="displayname" |
|
|
track-by="id" |
|
|
|
|
|
@search-change="searchAsync" |
|
|
@search-change="searchAsync" |
|
|
@input="(value) => $emit('input', value.id)" /> |
|
|
@input="(value) => $emit('input', value.id)" /> |
|
|
</div> |
|
|
</div> |
|
|
|