Fixed teleport
parent
c170d3ab7c
commit
a3a2f7a361
|
@ -559,12 +559,6 @@ export default {
|
||||||
originalEvent: event,
|
originalEvent: event,
|
||||||
target: this.$el
|
target: this.$el
|
||||||
});
|
});
|
||||||
},
|
|
||||||
appendDisabled() {
|
|
||||||
return this.appendTo === 'self' || this.inline;
|
|
||||||
},
|
|
||||||
appendTarget() {
|
|
||||||
return this.appendDisabled ? null : this.appendTo;
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
|
@ -576,6 +570,12 @@ export default {
|
||||||
},
|
},
|
||||||
pickerClass() {
|
pickerClass() {
|
||||||
return ['p-colorpicker-panel', this.panelClass, {'p-colorpicker-overlay-panel': !this.inline, 'p-disabled': this.disabled}];
|
return ['p-colorpicker-panel', this.panelClass, {'p-colorpicker-overlay-panel': !this.inline, 'p-disabled': this.disabled}];
|
||||||
|
},
|
||||||
|
appendDisabled() {
|
||||||
|
return this.appendTo === 'self' || this.inline;
|
||||||
|
},
|
||||||
|
appendTarget() {
|
||||||
|
return this.appendDisabled ? null : this.appendTo;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue