fix modal
This commit is contained in:
		
							parent
							
								
									cbcbd6f0a9
								
							
						
					
					
						commit
						06845b3bec
					
				|  | @ -1,6 +1,6 @@ | |||
| <template> | ||||
| <MkModal ref="modal" :manual-showing="manualShowing" :src="src" @click="$refs.modal.close()" @opening="opening" @close="$emit('close')" @closed="$emit('closed')"> | ||||
| 	<MkEmojiPicker :show-pinned="showPinned" :as-reaction-picker="asReactionPicker" @chosen="chosen" ref="picker"/> | ||||
| <MkModal ref="modal" :manual-showing="manualShowing" :src="src" @click="$refs.modal.close()" @opening="opening" @close="$emit('close')" @closed="$emit('closed')" v-slot="{ showing }"> | ||||
| 	<MkEmojiPicker v-show="showing" :show-pinned="showPinned" :as-reaction-picker="asReactionPicker" @chosen="chosen" ref="picker"/> | ||||
| </MkModal> | ||||
| </template> | ||||
| 
 | ||||
|  |  | |||
|  | @ -5,9 +5,7 @@ | |||
| 	</transition> | ||||
| 	<div class="content" :class="{ popup, fixed, top: position === 'top' }" @click.self="onBgClick" ref="content"> | ||||
| 		<transition :name="$store.state.animation ? popup ? 'modal-popup-content' : 'modal-content' : ''" appear @after-leave="$emit('closed')" @enter="$emit('opening')" @after-enter="childRendered"> | ||||
| 			<div v-show="manualShowing != null ? manualShowing : showing"> | ||||
| 				<slot></slot> | ||||
| 			</div> | ||||
| 			<slot v-if="manualShowing != null ? true : showing" v-bind:showing="manualShowing"></slot> | ||||
| 		</transition> | ||||
| 	</div> | ||||
| </div> | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue