Skip to content

Commit 3b63f13

Browse files
committedNov 29, 2024
fix show('forms')
1 parent 4f0f69d commit 3b63f13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/components/AutoQueryGrid.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ const emit = defineEmits<{
249249
const client = inject<JsonServiceClient>('client')!
250250
251251
const allAllow = 'filtering,queryString,queryFilters'.split(',') as GridAllowOptions[]
252-
const allShow = 'copyApiUrl,downloadCsv,filtersView,newItem,pagingInfo,pagingNav,preferences,refresh,resetPreferences,toolbar'.split(',') as GridShowOptions[]
252+
const allShow = 'copyApiUrl,downloadCsv,filtersView,newItem,pagingInfo,pagingNav,preferences,refresh,resetPreferences,toolbar,forms'.split(',') as GridShowOptions[]
253253
254254
const allowOptions = computed<{[k:string]:boolean}>(() => props.deny ? asOptions(allAllow,props.deny) : asOptions(allAllow,aqd.value.deny))
255255
const showOptions = computed<{[k:string]:boolean}>(() => props.hide ? asOptions(allShow,props.hide) : asOptions(allShow,aqd.value.hide))

0 commit comments

Comments
 (0)