mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
fix: remove additional settings
This commit is contained in:
Generated
+9
-9
@@ -9,8 +9,8 @@
|
||||
"@analytics/google-analytics": "^1.0.5",
|
||||
"@analytics/google-tag-manager": "^0.5.3",
|
||||
"@appwrite.io/console": "npm:matej-appwrite-console@7.1.125",
|
||||
"@appwrite.io/pink": "0.0.7-next.0",
|
||||
"@appwrite.io/pink-icons": "0.0.7-next.0",
|
||||
"@appwrite.io/pink": "0.0.7-next.1",
|
||||
"@appwrite.io/pink-icons": "0.0.7-next.1",
|
||||
"@popperjs/core": "^2.11.6",
|
||||
"@sentry/svelte": "^7.44.2",
|
||||
"@sentry/tracing": "^7.44.2",
|
||||
@@ -177,19 +177,19 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@appwrite.io/pink": {
|
||||
"version": "0.0.7-next.0",
|
||||
"resolved": "https://registry.npmjs.org/@appwrite.io/pink/-/pink-0.0.7-next.0.tgz",
|
||||
"integrity": "sha512-4J3WEyoX7HPu4Ykc8anmluns6pnjEm/ncVCUDWm0RgmkwKDu3flL+vHIOf37HX4XiAotMQKSRP7+EFptgeoaow==",
|
||||
"version": "0.0.7-next.1",
|
||||
"resolved": "https://registry.npmjs.org/@appwrite.io/pink/-/pink-0.0.7-next.1.tgz",
|
||||
"integrity": "sha512-MuDEOcYVZFNZbQ08xauoR7WDg8Hx6b4cdiNCsndMgWH6yoDKRHt7iLjRFBC615Y9UdFuLr1XYTYLyJVUdRdNGw==",
|
||||
"dependencies": {
|
||||
"@appwrite.io/pink-icons": "0.0.7-next.0",
|
||||
"@appwrite.io/pink-icons": "0.0.7-next.1",
|
||||
"normalize.css": "^8.0.1",
|
||||
"the-new-css-reset": "^1.7.3"
|
||||
}
|
||||
},
|
||||
"node_modules/@appwrite.io/pink-icons": {
|
||||
"version": "0.0.7-next.0",
|
||||
"resolved": "https://registry.npmjs.org/@appwrite.io/pink-icons/-/pink-icons-0.0.7-next.0.tgz",
|
||||
"integrity": "sha512-y11hyQHCbdhLDegkOonZNBezZpGJa4Vlku7FE/KslYz4OXcA2j7P8fqdlPUq+7qq0qNjAQGprYVVzPdWUVOR5Q=="
|
||||
"version": "0.0.7-next.1",
|
||||
"resolved": "https://registry.npmjs.org/@appwrite.io/pink-icons/-/pink-icons-0.0.7-next.1.tgz",
|
||||
"integrity": "sha512-9Y+XmzFKgS2OYIYLK42ADlQLe+Q7oiW/SlEp+XCjpfwEV0jlZD6PQSeE1o53uMV5djk5AGfZz0B1fdYneon/jA=="
|
||||
},
|
||||
"node_modules/@babel/code-frame": {
|
||||
"version": "7.22.5",
|
||||
|
||||
+2
-2
@@ -20,8 +20,8 @@
|
||||
"dependencies": {
|
||||
"@analytics/google-analytics": "^1.0.5",
|
||||
"@appwrite.io/console": "npm:matej-appwrite-console@7.1.125",
|
||||
"@appwrite.io/pink": "0.0.7-next.0",
|
||||
"@appwrite.io/pink-icons": "0.0.7-next.0",
|
||||
"@appwrite.io/pink": "0.0.7-next.1",
|
||||
"@appwrite.io/pink-icons": "0.0.7-next.1",
|
||||
"@analytics/google-tag-manager": "^0.5.3",
|
||||
"@popperjs/core": "^2.11.6",
|
||||
"@sentry/svelte": "^7.44.2",
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { page } from '$app/stores';
|
||||
import Alert from '$lib/components/alert.svelte';
|
||||
import Collapsible from '$lib/components/collapsible.svelte';
|
||||
import CollapsibleItem from '$lib/components/collapsibleItem.svelte';
|
||||
import CustomId from '$lib/components/customId.svelte';
|
||||
import Button from '$lib/elements/forms/button.svelte';
|
||||
import FormList from '$lib/elements/forms/formList.svelte';
|
||||
@@ -19,10 +17,6 @@
|
||||
let generatingApiKey = false;
|
||||
let showApiKeyCheck = false;
|
||||
|
||||
$: runtimeDetail =
|
||||
$templateConfig.runtime &&
|
||||
$template.runtimes.find((r) => r.name === $templateConfig.runtime);
|
||||
|
||||
async function generateApiKey() {
|
||||
if (generatingApiKey) {
|
||||
return;
|
||||
@@ -185,52 +179,5 @@
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<Collapsible>
|
||||
<CollapsibleItem>
|
||||
<svelte:fragment slot="title">Additional settings</svelte:fragment>
|
||||
<FormList>
|
||||
{#if $template.cron}
|
||||
<InputText
|
||||
disabled={true}
|
||||
label="Cron schedule"
|
||||
id="cron"
|
||||
value={$template.cron} />
|
||||
{/if}
|
||||
|
||||
{#if $template.permissions && $template.permissions.length > 0}
|
||||
<InputText
|
||||
disabled={true}
|
||||
label="Execute access"
|
||||
id="permissions"
|
||||
value={$template.permissions.join(', ')} />
|
||||
{/if}
|
||||
|
||||
{#if $template.events && $template.events.length > 0}
|
||||
<InputText
|
||||
disabled={true}
|
||||
label="Events"
|
||||
id="events"
|
||||
value={$template.events.join(', ')} />
|
||||
{/if}
|
||||
|
||||
{#if runtimeDetail && runtimeDetail.entrypoint}
|
||||
<InputText
|
||||
disabled={true}
|
||||
label="Entrypoint"
|
||||
id="entrypoint"
|
||||
value={runtimeDetail.entrypoint} />
|
||||
{/if}
|
||||
|
||||
{#if runtimeDetail && runtimeDetail.commands}
|
||||
<InputText
|
||||
disabled={true}
|
||||
label="Commands"
|
||||
id="commands"
|
||||
value={runtimeDetail.commands} />
|
||||
{/if}
|
||||
</FormList>
|
||||
</CollapsibleItem>
|
||||
</Collapsible>
|
||||
</div>
|
||||
</WizardStep>
|
||||
|
||||
Reference in New Issue
Block a user