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 be67080 commit 7619826Copy full SHA for 7619826
src/routes/(console)/project-[region]-[project]/overview/platforms/+page.svelte
@@ -139,13 +139,7 @@
139
</Layout.Stack>
140
</Table.Cell>
141
<Table.Cell {root}>
142
- {#if platform.type.includes('web') || platform.type === 'web'}
143
- {platform.hostname || '—'}
144
- {:else if platform.type.includes('android') || platform.type.includes('ios')}
145
- {platform.key || platform.hostname || '—'}
146
- {:else}
147
148
- {/if}
+ {platform.hostname || platform.key || '—'}
149
150
151
{#if platform.$updatedAt}
0 commit comments