1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00

disable ability to rename external datasource

This commit is contained in:
Peter Clement 2021-11-18 15:14:23 +00:00
parent d16ea91082
commit 0b8c074b81

View file

@ -22,7 +22,7 @@
let templateScreens
let willBeDeleted
$: external = table?.type === "external"
$: internal = table?.type === "internal"
function showDeleteModal() {
templateScreens = $allScreens.filter(
@ -66,7 +66,9 @@
<div slot="control" class="icon">
<Icon s hoverable name="MoreSmallList" />
</div>
<MenuItem icon="Edit" on:click={editorModal.show}>Edit</MenuItem>
{#if internal}
<MenuItem icon="Edit" on:click={editorModal.show}>Edit</MenuItem>
{/if}
<MenuItem icon="Delete" on:click={showDeleteModal}>Delete</MenuItem>
</ActionMenu>