Miscellaneous fixes and improvements (#9699)

* fix: base icon color in breadcrumb

* fix: allow expanding nested record from expanded form

* fix: focus base lable in tree view on create/delete/load

* fix: avoid allowing deletion of display value

* fix: focus input field if activeElement is div

* fix: text area height issue

* refactor: show app version on hovering nocodb icon

* refactor: focus only if adding new record

* refactor: extract foreign key value for external source
This commit is contained in:
Pranav C
2024-10-25 12:04:34 +05:30
committed by GitHub
parent 3e0fc8623e
commit ea6ce8d27b
11 changed files with 84 additions and 42 deletions

View File

@@ -1,4 +1,6 @@
<script lang="ts" setup></script>
<script lang="ts" setup>
const { appInfo } = useGlobal()
</script>
<template>
<div class="flex flex-row flex-grow pl-0.5 pr-1 py-0.5 rounded-md w-full" style="max-width: calc(100% - 2.5rem)">
@@ -13,7 +15,10 @@
target="_blank"
rel="noopener noreferrer"
>
<img alt="NocoDB" src="~/assets/img/brand/nocodb.png" />
<NcTooltip :disabled="!appInfo?.version || isEeUI">
<template #title>{{ appInfo?.version }}</template>
<img alt="NocoDB" src="~/assets/img/brand/nocodb.png" />
</NcTooltip>
</a>
<div class="flex flex-grow"></div>
</div>