Compare commits

..

No commits in common. "702019279a2ffa57525985730a991c1d96d14136" and "d29e306e6119adf2c2113161db49520ec3ce60d6" have entirely different histories.

2 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@ import {
TileGrid, TileGrid,
TileIcon, TileIcon,
TileName, TileName,
TilePort,
TileStatus, TileStatus,
} from '../styles' } from '../styles'
@ -20,7 +21,7 @@ export function Urls({ render }: { render: () => void }) {
return ( return (
<TileGrid narrow={isNarrow || undefined}> <TileGrid narrow={isNarrow || undefined}>
{nonTools.map(app => { {nonTools.map(app => {
const url = app.tunnelUrl || buildAppUrl(app.name, location.origin) const url = buildAppUrl(app.name, location.origin)
const running = app.state === 'running' const running = app.state === 'running'
const appPage = `/app/${app.name}` const appPage = `/app/${app.name}`
@ -40,6 +41,7 @@ export function Urls({ render }: { render: () => void }) {
<TileStatus state={app.state} onClick={openAppPage} /> <TileStatus state={app.state} onClick={openAppPage} />
<TileIcon>{app.icon}</TileIcon> <TileIcon>{app.icon}</TileIcon>
<TileName>{app.name}</TileName> <TileName>{app.name}</TileName>
<TilePort>{app.port ? `:${app.port}` : '\u2014'}</TilePort>
</Tile> </Tile>
) )
})} })}

View File

@ -164,7 +164,6 @@ export const TabContent = define('TabContent', {
active: { active: {
display: 'flex', display: 'flex',
flexDirection: 'column', flexDirection: 'column',
alignItems: 'center',
flex: 1, flex: 1,
width: '100%', width: '100%',
} }