diff --git a/web_src/js/components/EditAboutInfo.vue b/web_src/js/components/EditAboutInfo.vue index f0f02a396..1d8fef86b 100644 --- a/web_src/js/components/EditAboutInfo.vue +++ b/web_src/js/components/EditAboutInfo.vue @@ -20,7 +20,7 @@
- + @@ -123,6 +123,14 @@ export default { this.getDesc(); this.getWeb(); }, + watch:{ + 'info.desc'(val){ + if(val.length===256){ + this.info.desc = val.substr(0,255) + } + + } + } created() { }