Skip to content

Commit

Permalink
Merge pull request #2657 from tugcekucukoglu/colorpicker
Browse files Browse the repository at this point in the history
Fixed #2656 - ColorPicker: inline mode doesn't work
  • Loading branch information
tugcekucukoglu authored Jun 10, 2022
2 parents fbc9ff2 + 54e3329 commit 7275a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/colorpicker/ColorPicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div ref="container" :class="containerClass">
<input ref="input" type="text" :class="inputClass" readonly="readonly" :tabindex="tabindex" :disabled="disabled"
@click="onInputClick" @keydown="onInputKeydown" v-if="!inline" :aria-labelledby="ariaLabelledBy"/>
<Portal :appendTo="appendTo">
<Portal :appendTo="appendTo" :disabled="inline">
<transition name="p-connected-overlay" @enter="onOverlayEnter" @leave="onOverlayLeave" @after-leave="onOverlayAfterLeave">
<div :ref="pickerRef" :class="pickerClass" v-if="inline ? true : overlayVisible" @click="onOverlayClick">
<div class="p-colorpicker-content">
Expand Down

0 comments on commit 7275a7b

Please sign in to comment.