diff --git a/frontend/src/lib/components/AppConnect.svelte b/frontend/src/lib/components/AppConnect.svelte
index a9404874c7..403fe8c4a7 100644
--- a/frontend/src/lib/components/AppConnect.svelte
+++ b/frontend/src/lib/components/AppConnect.svelte
@@ -48,6 +48,7 @@
import DrawerContent from './common/drawer/DrawerContent.svelte'
import ApiConnectForm from './ApiConnectForm.svelte'
import SearchItems from './SearchItems.svelte'
+ import autosize from 'svelte-autosize'
export let newPageOAuth = false
@@ -383,7 +384,7 @@
/>
Description
-
+
{#if apiTokenApps[resource_type]}
Instructions
@@ -403,7 +404,7 @@
{/if}
{/if}
- Value
+ Value
diff --git a/frontend/src/lib/components/ResourceEditor.svelte b/frontend/src/lib/components/ResourceEditor.svelte
index 5771d75a9c..bf8711e203 100644
--- a/frontend/src/lib/components/ResourceEditor.svelte
+++ b/frontend/src/lib/components/ResourceEditor.svelte
@@ -20,7 +20,7 @@
let resourceToEdit: Resource | undefined
let description: string = ''
- let DESCRIPTION_PLACEHOLDER = `You can use markdown to style your description`
+ let DESCRIPTION_PLACEHOLDER = `Describe what this resource is for`
let selectedResourceType: string | undefined
let resourceSchema: Schema | undefined
let args: Record = {}
diff --git a/frontend/src/lib/utils.ts b/frontend/src/lib/utils.ts
index 4d60dd8a1e..505408f42a 100644
--- a/frontend/src/lib/utils.ts
+++ b/frontend/src/lib/utils.ts
@@ -294,6 +294,9 @@ export function groupBy(
})
}
+export function removeMarkdown(text: string): string {
+ return text.replace(/[[\*|\-|#\_]/g, '')
+}
export function truncate(s: string, n: number, suffix: string = '...'): string {
if (!s) {
return ''
diff --git a/frontend/src/routes/resources.svelte b/frontend/src/routes/resources.svelte
index 4d71e34e91..3a9ebd2dc9 100644
--- a/frontend/src/routes/resources.svelte
+++ b/frontend/src/routes/resources.svelte
@@ -7,7 +7,7 @@