File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
src/routes/(console)/project-[region]-[project]/overview/platforms Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 120
120
</script >
121
121
122
122
{#if data .platforms .platforms .length }
123
- <Table .Root columns ={3 } let:root >
123
+ <Table .Root columns ={4 } let:root >
124
124
<svelte:fragment slot =" header" let:root >
125
125
<Table .Header .Cell {root }>Name</Table .Header .Cell >
126
126
<Table .Header .Cell {root }>Platform type</Table .Header .Cell >
127
+ <Table .Header .Cell {root }>Identifier</Table .Header .Cell >
127
128
<Table .Header .Cell {root }>Last updated</Table .Header .Cell >
128
129
</svelte:fragment >
129
130
{#each data .platforms .platforms as platform }
137
138
{PlatformTypes [platform .type ]}
138
139
</Layout .Stack >
139
140
</Table .Cell >
141
+ <Table .Cell {root }>
142
+ {#if platform .type .includes (' web' ) || platform .type === ' web' }
143
+ {platform .hostname || ' —' }
144
+ {:else }
145
+ {platform .key || platform .hostname || ' —' }
146
+ {/if }
147
+ </Table .Cell >
140
148
<Table .Cell {root }>
141
149
{#if platform .$updatedAt }
142
150
<DualTimeView time ={platform .$updatedAt } />
You can’t perform that action at this time.
0 commit comments