[Client] Fix icon
This commit is contained in:
		
							parent
							
								
									d063d59a91
								
							
						
					
					
						commit
						1a77dea7ed
					
				
					 1 changed files with 4 additions and 2 deletions
				
			
		| 
						 | 
					@ -20,7 +20,7 @@
 | 
				
			||||||
	<footer>
 | 
						<footer>
 | 
				
			||||||
		<transition name="fade">
 | 
							<transition name="fade">
 | 
				
			||||||
			<div class="new-message" v-show="showIndicator">
 | 
								<div class="new-message" v-show="showIndicator">
 | 
				
			||||||
				<button @click="onIndicatorClick"><i><fa icon="arrow-circle-down"/></i>{{ $t('new-message') }}</button>
 | 
									<button @click="onIndicatorClick"><i><fa :icon="faArrowCircleDown"/></i>{{ $t('new-message') }}</button>
 | 
				
			||||||
			</div>
 | 
								</div>
 | 
				
			||||||
		</transition>
 | 
							</transition>
 | 
				
			||||||
		<x-form :user="user" ref="form"/>
 | 
							<x-form :user="user" ref="form"/>
 | 
				
			||||||
| 
						 | 
					@ -34,6 +34,7 @@ import i18n from '../../../i18n';
 | 
				
			||||||
import XMessage from './messaging-room.message.vue';
 | 
					import XMessage from './messaging-room.message.vue';
 | 
				
			||||||
import XForm from './messaging-room.form.vue';
 | 
					import XForm from './messaging-room.form.vue';
 | 
				
			||||||
import { url } from '../../../config';
 | 
					import { url } from '../../../config';
 | 
				
			||||||
 | 
					import { faArrowCircleDown } from '@fortawesome/free-solid-svg-icons';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default Vue.extend({
 | 
					export default Vue.extend({
 | 
				
			||||||
	i18n: i18n('common/views/components/messaging-room.vue'),
 | 
						i18n: i18n('common/views/components/messaging-room.vue'),
 | 
				
			||||||
| 
						 | 
					@ -52,7 +53,8 @@ export default Vue.extend({
 | 
				
			||||||
			existMoreMessages: false,
 | 
								existMoreMessages: false,
 | 
				
			||||||
			connection: null,
 | 
								connection: null,
 | 
				
			||||||
			showIndicator: false,
 | 
								showIndicator: false,
 | 
				
			||||||
			timer: null
 | 
								timer: null,
 | 
				
			||||||
 | 
								faArrowCircleDown
 | 
				
			||||||
		};
 | 
							};
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue