File tree Expand file tree Collapse file tree 2 files changed +28
-29
lines changed
packages/builder/src/pages/builder
app/[application]/design/_flagged Expand file tree Collapse file tree 2 files changed +28
-29
lines changed Original file line number Diff line number Diff line change 227
227
on:click ={() => {
228
228
window .open (" /builder/apps" , " _blank" )
229
229
}}
230
- >View apps portal
230
+ >
231
+ View app portal
231
232
</Button >
232
233
<Button
233
234
icon =" lightbulb"
Original file line number Diff line number Diff line change 380
380
{/if}
381
381
</div>
382
382
{/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>
411
409
</div>
412
410
413
411
<div class="app-table">
You can’t perform that action at this time.
0 commit comments