Improve usability of emoji page
This commit is contained in:
		
							parent
							
								
									582768a5e4
								
							
						
					
					
						commit
						5ef4a52bbd
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -5,7 +5,7 @@ | |||
| 	</div> | ||||
| 
 | ||||
| 	<div class="_section"> | ||||
| 		<div class="_content local" v-if="tab === 'local'"> | ||||
| 		<div class="local" v-if="tab === 'local'"> | ||||
| 			<MkButton primary @click="add" style="margin: 0 auto var(--margin) auto;"><Fa :icon="faPlus"/> {{ $t('addEmoji') }}</MkButton> | ||||
| 			<MkInput v-model:value="query" :debounce="true" type="search"><template #icon><Fa :icon="faSearch"/></template><span>{{ $t('search') }}</span></MkInput> | ||||
| 			<MkPagination :pagination="pagination" ref="emojis"> | ||||
|  | @ -24,7 +24,7 @@ | |||
| 			</MkPagination> | ||||
| 		</div> | ||||
| 
 | ||||
| 		<div class="_content remote" v-else-if="tab === 'remote'"> | ||||
| 		<div class="remote" v-else-if="tab === 'remote'"> | ||||
| 			<MkInput v-model:value="queryRemote" :debounce="true" type="search"><template #icon><Fa :icon="faSearch"/></template><span>{{ $t('search') }}</span></MkInput> | ||||
| 			<MkInput v-model:value="host" :debounce="true"><span>{{ $t('host') }}</span></MkInput> | ||||
| 			<MkPagination :pagination="remotePagination" ref="remoteEmojis"> | ||||
|  | @ -83,14 +83,14 @@ export default defineComponent({ | |||
| 			host: '', | ||||
| 			pagination: { | ||||
| 				endpoint: 'admin/emoji/list', | ||||
| 				limit: 15, | ||||
| 				limit: 30, | ||||
| 				params: computed(() => ({ | ||||
| 					query: (this.query && this.query !== '') ? this.query : null | ||||
| 				})) | ||||
| 			}, | ||||
| 			remotePagination: { | ||||
| 				endpoint: 'admin/emoji/list-remote', | ||||
| 				limit: 15, | ||||
| 				limit: 30, | ||||
| 				params: computed(() => ({ | ||||
| 					query: (this.queryRemote && this.queryRemote !== '') ? this.queryRemote : null, | ||||
| 					host: (this.host && this.host !== '') ? this.host : null | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue