Skip to content

Commit

Permalink
🔥 ビルド詳細表示の削除
Browse files Browse the repository at this point in the history
  • Loading branch information
eyemono-moe committed Nov 29, 2023
1 parent b5fda2a commit fee4faa
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions dashboard/src/components/templates/app/AppInfoLists.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import { Component, Show } from 'solid-js'
import { Application, DeployType } from '/@/api/neoshowcase/protobuf/gateway_pb'
import { systemInfo } from '/@/libs/api'
import { buildTypeStr } from '/@/libs/application'
import { diffHuman } from '/@/libs/format'
import Code from '../../UI/Code'
import { ToolTip } from '../../UI/ToolTip'
import { List } from '../List'
import AppConfigInfo from './AppConfigInfo'

const AppInfoLists: Component<{ app: Application }> = (props) => {
const sshAccessCommand = () => `ssh -p ${systemInfo().ssh.port} ${props.app.id}@${systemInfo().ssh.host}`
Expand Down Expand Up @@ -47,13 +45,6 @@ const AppInfoLists: Component<{ app: Application }> = (props) => {
}}
</Show>
</List.Columns>
<List.Row>
<List.RowContent>
<List.RowTitle>Build Type</List.RowTitle>
<List.RowData>{buildTypeStr[props.app.config.buildConfig.case]}</List.RowData>
</List.RowContent>
</List.Row>
<AppConfigInfo config={props.app.config} />
<Show when={props.app.deployType === DeployType.RUNTIME}>
<List.Row>
<List.RowContent>
Expand Down

0 comments on commit fee4faa

Please sign in to comment.