typo
This commit is contained in:
		@ -63,7 +63,7 @@ const addPostContent = ref("");
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
		<!-- Popup to add Post -->
 | 
							<!-- Popup to add Post -->
 | 
				
			||||||
		<div id="addPostForm" v-if=addPost>
 | 
							<div id="addPostForm" v-if=addPost>
 | 
				
			||||||
			<label>i18n("forum.post.create.name")</label>
 | 
								<label>{{ i18n("forum.post.create.name") }}</label>
 | 
				
			||||||
			<input type="text" placeholder="subject" v-model=addPostSubject @keyup.enter="createPost(selectedForum, addPostSubject, addPostContent); addPost = false;"/>
 | 
								<input type="text" placeholder="subject" v-model=addPostSubject @keyup.enter="createPost(selectedForum, addPostSubject, addPostContent); addPost = false;"/>
 | 
				
			||||||
			<textarea v-model="addPostContent" placeholder=content></textarea>
 | 
								<textarea v-model="addPostContent" placeholder=content></textarea>
 | 
				
			||||||
			<input type="submit" value="send" @click="createPost(selectedForum, addPostSubject, addPostContent); addPost = false;">
 | 
								<input type="submit" value="send" @click="createPost(selectedForum, addPostSubject, addPostContent); addPost = false;">
 | 
				
			||||||
@ -111,6 +111,7 @@ const addPostContent = ref("");
 | 
				
			|||||||
	display: flex;
 | 
						display: flex;
 | 
				
			||||||
	justify-content: center;
 | 
						justify-content: center;
 | 
				
			||||||
	align-items: center;
 | 
						align-items: center;
 | 
				
			||||||
 | 
						flex-direction: column;
 | 
				
			||||||
	gap: 10px;
 | 
						gap: 10px;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user