Browse Source

[Fix-7083] [UI] The switch task is missing the else branch (#7084)

3.0.0/version-upgrade
wangyizhi 3 years ago committed by GitHub
parent
commit
e0623973e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/conditions.vue
  2. 6
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/switch.vue

6
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/conditions.vue

@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
<template> <template>
<div class="conditions-model"> <div class="conditions-task">
<m-list-box> <m-list-box>
<div slot="text">{{$t('Custom Parameters')}}</div> <div slot="text">{{$t('Custom Parameters')}}</div>
<div slot="content"> <div slot="content">
@ -175,8 +175,8 @@
} }
</script> </script>
<style lang="scss" rel="stylesheet/scss"> <style lang="scss" rel="stylesheet/scss" scoped>
.conditions-model { .conditions-task {
margin-top: -10px; margin-top: -10px;
.dep-opt { .dep-opt {
margin-bottom: 10px; margin-bottom: 10px;

6
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/tasks/switch.vue

@ -15,7 +15,7 @@
* limitations under the License. * limitations under the License.
*/ */
<template> <template>
<div class="conditions-model"> <div class="switch-task">
<m-list-box> <m-list-box>
<div slot="text">{{$t('condition')}}</div> <div slot="text">{{$t('condition')}}</div>
<div slot="content"> <div slot="content">
@ -181,8 +181,8 @@
} }
</script> </script>
<style lang="scss" rel="stylesheet/scss"> <style lang="scss" rel="stylesheet/scss" scoped>
.conditions-model { .switch-task {
margin-top: -10px; margin-top: -10px;
.dep-opt { .dep-opt {
margin-bottom: 10px; margin-bottom: 10px;

Loading…
Cancel
Save