mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-02 18:07:51 +00:00
Nc fix/integration bug fixes (#9150)
* fix(nc-gui): always show edit connection tab on clicking data source * fix(nc-gui): show deleted workspace user info in connection list * fix(nc-gui): show tooltip on hover deleted user details * fix(nc-gui): some review changes * fix(nc-gui): sync modal cleanup * fix: supported docs label * fix(nc-gui): pg icon issue in data source list * fix(nc-gui): new integration page ui changes * fix(nc-gui): handle upvote * fix(nc-gui): add integration category icons * fix(nc-gui): add request new integration in other category * fix(nc-gui): focus request integration input on open * fix(nc-gui): integration tab left spacing issue * fix(nc-gui): integration tab list center aligned * misc: minor changes * fix(nc-gui): user should able to upvote on cliking tiles * fix(nc-gui): add remaining integrations * fix(nc-gui): add missing integration icons * fix(nc-gui): trigger test connection on adding new connection from create source * fix(nc-gui): integration list modal ui changes * fix(nc-gui): remove integration type badge border * fix(nc-gui): show colored integration icon on hover * fix(nc-gui): integration upvote btn shadow issue * fix(nc-gui): some pr review changes * fix(nc-gui): move logic part in script * chore(nc-gui): lint --------- Co-authored-by: Raju Udava <86527202+dstala@users.noreply.github.com>
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
<script lang="ts" setup>
|
||||
const supportedDocs = [
|
||||
{
|
||||
title: 'Configure a PostgreSQL Integration',
|
||||
title: 'Integrations',
|
||||
href: '',
|
||||
},
|
||||
{
|
||||
title: 'Getting started with Integrations',
|
||||
title: 'Create new connection',
|
||||
href: '',
|
||||
},
|
||||
{
|
||||
title: 'Troubleshoot database connection',
|
||||
title: 'Add new data source',
|
||||
href: '',
|
||||
},
|
||||
] as {
|
||||
@@ -24,13 +24,18 @@ const supportedDocs = [
|
||||
<div class="text-sm text-gray-800 font-semibold">Supported Docs</div>
|
||||
|
||||
<div>
|
||||
<div v-for="doc of supportedDocs" class="flex items-center gap-1">
|
||||
<div class="h-7 w-7 flex items-center justify-center">
|
||||
<GeneralIcon icon="bookOpen" class="flex-none w-4 h-4 text-gray-600"/>
|
||||
</div>
|
||||
<a :href="doc.href" target="_blank" rel="noopener noreferrer" class="!text-gray-700 text-sm !no-underline !hover:underline">
|
||||
{{ doc.title }}
|
||||
</a>
|
||||
<div v-for="(doc, idx) of supportedDocs" :key="idx" class="flex items-center gap-1">
|
||||
<div class="h-7 w-7 flex items-center justify-center">
|
||||
<GeneralIcon icon="bookOpen" class="flex-none w-4 h-4 text-gray-600" />
|
||||
</div>
|
||||
<a
|
||||
:href="doc.href"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="!text-gray-700 text-sm !no-underline !hover:underline"
|
||||
>
|
||||
{{ doc.title }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user