Skip to content

Commit cdd3ba9

Browse files
authored
Merge pull request #16784 from Budibase/fix/app-list-layout
Workspace UI fixes
2 parents 9aae6cf + eb98294 commit cdd3ba9

File tree

2 files changed

+28
-29
lines changed

2 files changed

+28
-29
lines changed

packages/builder/src/pages/builder/app/[application]/design/_flagged/index.new.svelte

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,8 @@
227227
on:click={() => {
228228
window.open("/builder/apps", "_blank")
229229
}}
230-
>View apps portal
230+
>
231+
View app portal
231232
</Button>
232233
<Button
233234
icon="lightbulb"

packages/builder/src/pages/builder/portal/apps/index.svelte

Lines changed: 26 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -380,34 +380,32 @@
380380
{/if}
381381
</div>
382382
{/if}
383-
{#if $appsStore.apps.length > 1}
384-
<div class="app-actions">
385-
<Select
386-
autoWidth
387-
value={$sortBy}
388-
on:change={e => {
389-
appsStore.updateSort(e.detail)
390-
}}
391-
placeholder={null}
392-
options={[
393-
{ label: "Sort by name", value: "name" },
394-
{ label: "Sort by recently updated", value: "updated" },
395-
{ label: "Sort by status", value: "status" },
396-
]}
397-
/>
398-
<Search
399-
placeholder="Search"
400-
on:input={e => {
401-
searchTerm = e.target.value
402-
}}
403-
on:change={e => {
404-
if (!e.detail) {
405-
searchTerm = null
406-
}
407-
}}
408-
/>
409-
</div>
410-
{/if}
383+
<div class="app-actions">
384+
<Select
385+
autoWidth
386+
value={$sortBy}
387+
on:change={e => {
388+
appsStore.updateSort(e.detail)
389+
}}
390+
placeholder={null}
391+
options={[
392+
{ label: "Sort by name", value: "name" },
393+
{ label: "Sort by recently updated", value: "updated" },
394+
{ label: "Sort by status", value: "status" },
395+
]}
396+
/>
397+
<Search
398+
placeholder="Search"
399+
on:input={e => {
400+
searchTerm = e.target.value
401+
}}
402+
on:change={e => {
403+
if (!e.detail) {
404+
searchTerm = null
405+
}
406+
}}
407+
/>
408+
</div>
411409
</div>
412410
413411
<div class="app-table">

0 commit comments

Comments
 (0)