Skip to content

Commit

Permalink
fix: minor bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tarikmehinagic committed Nov 17, 2023
1 parent d800f9b commit 9545d27
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/DatePicker/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import RobustFloating from '../Floating/index.vue';
import RobustCalendar from '../Calendar/index.vue';
import RobustInputWrapper from '../InputWrapper/index.vue';
import { PhCaretDown, PhCalendar, PhArrowClockwise } from '@phosphor-icons/vue';
import { computed, ref, toRefs, PropType, readonly, inject } from 'vue';
import { computed, ref, toRefs, PropType, inject } from 'vue';
import { MaybeRef, onClickOutside } from '@vueuse/core';
import { Preset } from '../Calendar/presets';
Expand Down Expand Up @@ -212,6 +212,7 @@ function resetValue() {
</div>
</RobustInputWrapper>
<RobustFloating
v-if="inputWrapperRef?.wrapperRef"
ref="elementRef"
v-model:open="open"
class="z-[100] origin-top-left"
Expand Down
1 change: 1 addition & 0 deletions src/components/DateRangePicker/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,7 @@ const saveTime = async () => {
</div>
</RobustInputWrapper>
<RobustFloating
v-if="inputWrapperRef?.wrapperRef"
ref="elementRef"
v-model:open="open"
class="z-[100] origin-top-left"
Expand Down

0 comments on commit 9545d27

Please sign in to comment.