Fix #1957
This commit is contained in:
		
							parent
							
								
									7ec9b03990
								
							
						
					
					
						commit
						138fa1454f
					
				
					 2 changed files with 10 additions and 6 deletions
				
			
		| 
						 | 
					@ -137,7 +137,9 @@ export default Vue.extend({
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		canPost(): boolean {
 | 
							canPost(): boolean {
 | 
				
			||||||
			return !this.posting && (this.text.length != 0 || this.files.length != 0 || this.poll || this.renote);
 | 
								return !this.posting &&
 | 
				
			||||||
 | 
									(1 <= this.text.length || 1 <= this.files.length || this.poll || this.renote) &&
 | 
				
			||||||
 | 
									(this.text.length <= 1000);
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -132,7 +132,9 @@ export default Vue.extend({
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		canPost(): boolean {
 | 
							canPost(): boolean {
 | 
				
			||||||
			return !this.posting && (this.text.length != 0 || this.files.length != 0 || this.poll || this.renote);
 | 
								return !this.posting &&
 | 
				
			||||||
 | 
									(1 <= this.text.length || 1 <= this.files.length || this.poll || this.renote) &&
 | 
				
			||||||
 | 
									(this.text.length <= 1000);
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue