Skip to content

Commit

Permalink
update UI File / UI Build file
Browse files Browse the repository at this point in the history
  • Loading branch information
Strato-YangSungHun committed Nov 7, 2024
1 parent 46db21b commit 3de723b
Show file tree
Hide file tree
Showing 14 changed files with 25 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -380,17 +380,20 @@ const _getClusterName = async () => {
const onChangeNsId = async () => {
await _getMciName();
onChangeForm();
if(modalType.value === 'Application Installation')
onChangeForm();
}
const onChangeMci = async () => {
await _getVmName();
onChangeForm();
if(modalType.value === 'Application Installation')
onChangeForm();
}
const onSelectNamespace = async () =>{
await _getClusterName();
onChangeForm();
if(modalType.value === 'Application Installation')
onChangeForm();
}
const runInstall = async () => {
Expand Down Expand Up @@ -498,7 +501,8 @@ const specCheckCallback = async () => {
const selectedCatalogIdx = ref(0 as number)
const onChangeCatalog = () => {
specCheckFlag.value = true
if(modalType.value === 'Application Installation')
specCheckFlag.value = true
props.catalogList.forEach((catalogInfo) => {
if (inputApplications.value === catalogInfo.catalogTitle) {
Expand All @@ -508,7 +512,8 @@ const onChangeCatalog = () => {
})
}
const onChangeForm = () => {
specCheckFlag.value = true
if(modalType.value === 'Application Installation')
specCheckFlag.value = true
}
</script>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3de723b

Please sign in to comment.