Skip to content

Commit

Permalink
Get rid of empty class, not needed (#2410)
Browse files Browse the repository at this point in the history
* Get rid of empty class, not needed

* Add nexus flag for dynamic config
  • Loading branch information
Alex-Tideman authored Oct 29, 2024
1 parent e129594 commit 39d1a21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
13 changes: 1 addition & 12 deletions src/routes/(app)/nexus/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,7 @@
export let data: PageData;
$: ({ endpoints } = data);
$: search = $page.url.searchParams.get('search') || '';
$: empty = !endpoints?.length && !search;
</script>

<PageTitle title={translate('nexus.endpoints')} url={$page.url.href} />
<div class:empty>
<NexusEndpoints {endpoints} />
</div>

<style lang="postcss">
.empty {
@apply absolute left-0 right-0 top-12;
}
</style>
<NexusEndpoints {endpoints} />
2 changes: 1 addition & 1 deletion utilities/temporal-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const createTemporalServer = async ({
}

const temporal =
$`${cliPath} server start-dev --dynamic-config-value frontend.enableUpdateWorkflowExecution=true --dynamic-config-value frontend.enableUpdateWorkflowExecutionAsyncAccepted=true --dynamic-config-value frontend.workerVersioningDataAPIs=true --dynamic-config-value frontend.workerVersioningWorkflowAPIs=true --dynamic-config-value worker.buildIdScavengerEnabled=true ${flags}`.quiet();
$`${cliPath} server start-dev --dynamic-config-value frontend.enableUpdateWorkflowExecution=true --dynamic-config-value frontend.enableUpdateWorkflowExecutionAsyncAccepted=true --dynamic-config-value frontend.workerVersioningDataAPIs=true --dynamic-config-value frontend.workerVersioningWorkflowAPIs=true --dynamic-config-value worker.buildIdScavengerEnabled=true --dynamic-config-value system.enableNexus=true ${flags}`.quiet();

temporal.catch(async ({ stdout, stderr, exitCode }) => {
console.log('EXIT CODE', exitCode);
Expand Down

0 comments on commit 39d1a21

Please sign in to comment.