Skip to content

Commit

Permalink
Merge pull request #3042 from mervekaraman/master
Browse files Browse the repository at this point in the history
Z-index of the modal is not enough
  • Loading branch information
denisdulici committed Sep 4, 2023
2 parents 79dcd97 + d21950e commit bbc8590
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion resources/assets/js/components/AkauntingModalAddNew.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<template>
<SlideYUpTransition :duration="animationDuration">
<div class="modal w-full h-full fixed top-0 left-0 right-0 z-50 overflow-y-auto overflow-hidden modal-add-new fade justify-center"
<div class="modal w-full h-full fixed top-0 left-0 right-0 overflow-y-auto overflow-hidden modal-add-new fade justify-center"
@click.self="closeModal"
:class="[modalPositionTop ? 'items-start' : 'items-center', {'show flex flex-wrap modal-background': show}, {'hidden': !show}]"
style="z-index: 100;"
v-show="show"
tabindex="-1"
role="dialog"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/form/error.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="text-red text-sm mt-1 block"
<div class="text-red text-sm mt-1 block whitespace-normal"
v-if="{{ isset($attributes['v-error']) ? $attributes['v-error'] : 'form.errors.has("' . $name . '")' }}"
v-html="{{ isset($attributes['v-error-message']) ? $attributes['v-error-message'] : 'form.errors.get("' . $name . '")' }}">
</div>

0 comments on commit bbc8590

Please sign in to comment.