mirror of
https://github.com/wekan/wekan.git
synced 2026-02-07 00:51:47 +01:00
Remove unnecessary template name declaration
This code was duplicate with the name we use to `register` the component. A update of blaze-component removed the need to duplicate this declaration.
This commit is contained in:
parent
46747b01fb
commit
ac6491ea12
16 changed files with 0 additions and 92 deletions
|
|
@ -1,10 +1,6 @@
|
|||
const { calculateIndex } = Utils;
|
||||
|
||||
BlazeComponent.extendComponent({
|
||||
template() {
|
||||
return 'list';
|
||||
},
|
||||
|
||||
// Proxy
|
||||
openForm(options) {
|
||||
this.childComponents('listBody')[0].openForm(options);
|
||||
|
|
|
|||
|
|
@ -1,8 +1,4 @@
|
|||
BlazeComponent.extendComponent({
|
||||
template() {
|
||||
return 'listBody';
|
||||
},
|
||||
|
||||
mixins() {
|
||||
return [Mixins.PerfectScrollbar];
|
||||
},
|
||||
|
|
@ -122,10 +118,6 @@ function toggleValueInReactiveArray(reactiveValue, value) {
|
|||
}
|
||||
|
||||
BlazeComponent.extendComponent({
|
||||
template() {
|
||||
return 'addCardForm';
|
||||
},
|
||||
|
||||
onCreated() {
|
||||
this.labels = new ReactiveVar([]);
|
||||
this.members = new ReactiveVar([]);
|
||||
|
|
|
|||
|
|
@ -1,8 +1,4 @@
|
|||
BlazeComponent.extendComponent({
|
||||
template() {
|
||||
return 'listHeader';
|
||||
},
|
||||
|
||||
editTitle(evt) {
|
||||
evt.preventDefault();
|
||||
const newTitle = this.childComponents('inlinedForm')[0].getValue().trim();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue