fix: delete is captured in more fields in app
This commit is contained in:
@@ -710,6 +710,7 @@
|
||||
type="text"
|
||||
placeholder="App summary"
|
||||
class="text-sm w-full font-semibold"
|
||||
on:keydown|stopPropagation
|
||||
bind:value={$summary}
|
||||
on:keyup={() => {
|
||||
if (appPath == '' && $summary?.length > 0 && !dirtyPath) {
|
||||
@@ -766,6 +767,7 @@
|
||||
placeholder="App summary"
|
||||
class="text-sm w-full"
|
||||
bind:value={$summary}
|
||||
on:keydown|stopPropagation
|
||||
on:keyup={() => {
|
||||
if (appPath == '' && $summary?.length > 0 && !dirtyPath) {
|
||||
path?.setName(
|
||||
@@ -1180,6 +1182,7 @@
|
||||
placeholder="App summary"
|
||||
class="text-sm w-full font-semibold"
|
||||
bind:value={$summary}
|
||||
on:keydown|stopPropagation
|
||||
/>
|
||||
</div>
|
||||
<div class="flex gap-4 items-center justify-center">
|
||||
|
||||
@@ -40,7 +40,8 @@
|
||||
<slot />
|
||||
<input
|
||||
type="text"
|
||||
placeholder="Search workspace scripts"
|
||||
placeholder="Search workspace flows"
|
||||
on:keydown|stopPropagation
|
||||
bind:value={filter}
|
||||
class="text-2xl grow mb-4"
|
||||
/>
|
||||
|
||||
@@ -40,6 +40,7 @@
|
||||
<slot />
|
||||
<input
|
||||
type="text"
|
||||
on:keydown|stopPropagation
|
||||
placeholder="Search workspace scripts"
|
||||
bind:value={filter}
|
||||
class="text-2xl grow mb-4"
|
||||
|
||||
@@ -29,7 +29,11 @@
|
||||
$: $workspaceStore && kind && loadItems()
|
||||
|
||||
async function loadItems(): Promise<void> {
|
||||
items = await ScriptService.listScripts({ workspace: $workspaceStore!, kinds: kind, isTemplate })
|
||||
items = await ScriptService.listScripts({
|
||||
workspace: $workspaceStore!,
|
||||
kinds: kind,
|
||||
isTemplate
|
||||
})
|
||||
}
|
||||
|
||||
let ownerFilter: string | undefined = undefined
|
||||
@@ -58,6 +62,7 @@
|
||||
|
||||
<input
|
||||
type="text"
|
||||
on:keydown|stopPropagation
|
||||
placeholder="Search Workspace Scripts"
|
||||
bind:value={filter}
|
||||
class="text-2xl grow"
|
||||
|
||||
Reference in New Issue
Block a user