mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 16:37:06 +00:00
Nc feat/Readonly source followup (#8795)
* feat: allow partial column update (GUI) * feat: allow partial column update (backend) * refactor: swagger schema description correction * feat: allow edit from multi field editor * fix: allow meta update in api level * fix: add tooltip and docs link * fix: multi field editor corrections * fix: allow table meta update * fix: allow table meta update * fix: allow column validation update * fix: block adding new option directly from cell * fix: add tooltip for column menu options * refactor: tooltips * test: replace index with count as parameter * fix: corrections * refactor: hint text update
This commit is contained in:
@@ -55,9 +55,7 @@ const searchVal = ref<string | null>()
|
||||
|
||||
const { $api } = useNuxtApp()
|
||||
|
||||
const { getMeta } = useMetas()
|
||||
|
||||
const { isUIAllowed } = useRoles()
|
||||
const { isUIAllowed, isMetaReadOnly } = useRoles()
|
||||
|
||||
const { isPg, isMysql } = useBase()
|
||||
|
||||
@@ -522,7 +520,9 @@ const onFocus = () => {
|
||||
</a-select-option>
|
||||
|
||||
<a-select-option
|
||||
v-if="searchVal && isOptionMissing && !isPublic && !disableOptionCreation && isUIAllowed('fieldEdit')"
|
||||
v-if="
|
||||
!isMetaReadOnly && searchVal && isOptionMissing && !isPublic && !disableOptionCreation && isUIAllowed('fieldEdit')
|
||||
"
|
||||
:key="searchVal"
|
||||
:value="searchVal"
|
||||
>
|
||||
|
||||
Reference in New Issue
Block a user