Skip to content

Commit

Permalink
feat: update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
amuluze committed Jul 25, 2024
1 parent 4d1272a commit 91dadb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/src/views/container/container/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -503,25 +503,25 @@ const initNetworkOptions = async () => {
}
const addPort = () => {
createForm.ports.push({
containerCreateMode.ports.push({
hostPort: '',
containerPort: ''
})
}
const deletePort = (index: number) => {
createForm.ports.splice(index, 1)
containerCreateMode.ports.splice(index, 1)
}
const addVolume = () => {
createForm.volumes.push({
containerCreateMode.volumes.push({
hostPath: '',
containerPath: ''
})
}
const deleteVolume = (index: number) => {
createForm.volumes.splice(index, 1)
containerCreateMode.volumes.splice(index, 1)
}
const createContainerLoading = ref(false)
Expand Down

0 comments on commit 91dadb7

Please sign in to comment.