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

This commit is contained in:
Nithin David Thomas
2022-12-22 14:14:30 -08:00
committed by GitHub
parent 1bf23055df
commit 3e91765472
@@ -37,6 +37,13 @@ export default {
this.resizeTextarea();
},
},
mounted() {
this.$nextTick(() => {
if (this.value) {
this.resizeTextarea();
}
});
},
methods: {
resizeTextarea() {
if (!this.value) {