Merge pull request #9690 from Budibase/link-to-plugin-repo-from-plugin-page
Link to Plugin Repo from Plugin Page
This commit is contained in:
commit
8deacaccf8
|
@ -81,6 +81,17 @@
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<div>
|
<div>
|
||||||
<Button on:click={modal.show} cta>Add plugin</Button>
|
<Button on:click={modal.show} cta>Add plugin</Button>
|
||||||
|
<div class="secondaryButton">
|
||||||
|
<Button
|
||||||
|
on:click={() =>
|
||||||
|
window
|
||||||
|
.open("https://github.com/Budibase/plugins", "_blank")
|
||||||
|
.focus()}
|
||||||
|
secondary
|
||||||
|
>
|
||||||
|
GitHub repo
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{#if $plugins?.length}
|
{#if $plugins?.length}
|
||||||
<div class="filters">
|
<div class="filters">
|
||||||
|
@ -97,15 +108,17 @@
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<Table
|
{#if $plugins?.length}
|
||||||
{schema}
|
<Table
|
||||||
data={filteredPlugins}
|
{schema}
|
||||||
allowEditColumns={false}
|
data={filteredPlugins}
|
||||||
allowEditRows={false}
|
allowEditColumns={false}
|
||||||
allowSelectRows={false}
|
allowEditRows={false}
|
||||||
allowClickRows={false}
|
allowSelectRows={false}
|
||||||
{customRenderers}
|
allowClickRows={false}
|
||||||
/>
|
{customRenderers}
|
||||||
|
/>
|
||||||
|
{/if}
|
||||||
</Layout>
|
</Layout>
|
||||||
</Page>
|
</Page>
|
||||||
|
|
||||||
|
@ -137,4 +150,9 @@
|
||||||
width: auto;
|
width: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.secondaryButton {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: 6px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue