We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28ac893 commit d1b72d7Copy full SHA for d1b72d7
src/routes/(console)/project-[region]-[project]/overview/platforms/+page.svelte
@@ -139,9 +139,11 @@
139
</Layout.Stack>
140
</Table.Cell>
141
<Table.Cell {root}>
142
- {(platform.type.includes('web') || platform.type === 'web'
143
- ? platform.hostname
144
- : platform.key) || '—'}
+ {#if platform.type.includes('web') || platform.type === 'web'}
+ {platform.hostname || '—'}
+ {:else}
145
+ {platform.key || platform.hostname || '—'}
146
+ {/if}
147
148
149
{#if platform.$updatedAt}
0 commit comments