Skip to content

Commit 9f2f301

Browse files
committed
Merge branch 'next' of github.com:devforth/adminforth into next
2 parents b3c4623 + 9e1c148 commit 9f2f301

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adminforth/documentation/docs/tutorial/03-Customization/04-hooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ For example we can prevent the user to see Apartments created by other users. Su
137137
}
138138

139139
// this function will skip existing realtor_id filter if it supplied already from UI or previous hook, and will add new one for realtor_id
140-
query.filterTools.replaceOrAddTopFilter(Filters.EQ('realtor_id', adminUser.dbUser.id)
140+
query.filterTools.replaceOrAddTopFilter(Filters.EQ('realtor_id', adminUser.dbUser.id))
141141

142142
return { ok: true };
143143
},

adminforth/spa/src/afcl/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</div>
3939
</div>
4040
<teleport to="body" v-if="(teleportToBody || teleportToTop) && showDropdown">
41-
<div ref="dropdownEl" :style="getDropdownPosition" :class="{'shadow-none': isTop, 'z-10': teleportToBody, 'z-[1000]': teleportToTop}"
41+
<div ref="dropdownEl" :style="getDropdownPosition" :class="{'shadow-none': isTop, 'z-30': teleportToBody, 'z-[1000]': teleportToTop}"
4242
class="fixed w-full bg-lightDropdownOptionsBackground shadow-lg dark:shadow-black dark:bg-darkDropdownOptionsBackground
4343
dark:border-gray-600 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm max-h-48"
4444
@scroll="handleDropdownScroll">

0 commit comments

Comments
 (0)