Skip to content

Commit

Permalink
Merge pull request #96 from Strato-YangSungHun/main
Browse files Browse the repository at this point in the history
update UI File / UI Build file
  • Loading branch information
Strato-YangSungHun authored Nov 7, 2024
2 parents 3ce7f2e + 3de723b commit 539d6b5
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 539d6b5

Please sign in to comment.