docs link
This commit is contained in:
parent
98f32d96d3
commit
72c5b173b6
|
@ -59,6 +59,7 @@
|
|||
$: datasourceType = datasource?.source
|
||||
|
||||
$: config = $backendUiStore.integrations[datasourceType]?.query
|
||||
$: docsLink = $backendUiStore.integrations[datasourceType]?.docs
|
||||
|
||||
$: shouldShowQueryConfig = config && query.queryVerb && query.queryType
|
||||
|
||||
|
@ -150,6 +151,10 @@
|
|||
{/each}
|
||||
</Select>
|
||||
{/if}
|
||||
<Spacer medium />
|
||||
<Button primary href={docsLink} target="_blank">
|
||||
<i class="ri-book-2-line" />
|
||||
</Button>
|
||||
{/if}
|
||||
</header>
|
||||
|
||||
|
@ -222,6 +227,10 @@
|
|||
margin-bottom: var(--spacing-m);
|
||||
}
|
||||
|
||||
a {
|
||||
font-size: var(--font-size-s);
|
||||
}
|
||||
|
||||
.config {
|
||||
margin-bottom: var(--spacing-s);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue