Browse Source

refactor: disable inflection none option for gql

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/843/head
Pranav C 3 years ago
parent
commit
a0269bc208
  1. 4
      packages/nc-gui/components/createOrEditProject.vue

4
packages/nc-gui/components/createOrEditProject.vue

@ -657,7 +657,7 @@
'projects.ext_db.credentials.advanced.inflection.table_name' 'projects.ext_db.credentials.advanced.inflection.table_name'
) )
" "
:items="['camelize', 'none']" :items="project.projectType === 'rest' ? ['camelize', 'none'] : ['camelize']"
> >
<template #item="{ item }"> <template #item="{ item }">
<span class="caption">{{ item }}</span> <span class="caption">{{ item }}</span>
@ -675,7 +675,7 @@
'projects.ext_db.credentials.advanced.inflection.column_name' 'projects.ext_db.credentials.advanced.inflection.column_name'
) )
" "
:items="['camelize', 'none']" :items="project.projectType === 'rest' ? ['camelize', 'none'] : ['camelize']"
> >
<template #item="{ item }"> <template #item="{ item }">
<span class="caption">{{ item }}</span> <span class="caption">{{ item }}</span>

Loading…
Cancel
Save