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

View File

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