fix: Expand title height of textarea on load (#6103)

This commit is contained in:
Nithin David Thomas
2022-12-23 03:44:30 +05:30
committed by Pranav Raj S
parent 78251f54c9
commit 00eabe07a4

View File

@@ -37,6 +37,13 @@ export default {
this.resizeTextarea();
},
},
mounted() {
this.$nextTick(() => {
if (this.value) {
this.resizeTextarea();
}
});
},
methods: {
resizeTextarea() {
if (!this.value) {