mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 01:06:43 +00:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user