Skip to content

Commit 1368cd5

Browse files
authored
Merge pull request #967 from ercole-io/fix-bugs
Fix cloud advisors settings position
2 parents 578f499 + 75ca65b commit 1368cd5

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

src/components/settings/ThunderService.vue

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -50,82 +50,82 @@
5050
</div>
5151

5252
<hr class="my-3" />
53-
<p class="is-size-6 has-text-weight-semibold">Oci Data Retrieve Job</p>
53+
<p class="is-size-6 has-text-weight-semibold">Cloud Advisors</p>
5454

5555
<div class="columns is-multiline">
56-
<div class="column is-one-quarter">
56+
<div class="column is-2">
5757
<div class="field">
5858
<label
59-
v-html="highlight(ThunderServiceLabels[4])"
59+
v-html="highlight(APIServiceLabels[21])"
6060
class="label is-small"
6161
/>
62-
<CustomInput v-model="ThunderService.OciDataRetrieveJob.Crontab" />
62+
<CustomRadio
63+
v-model="APIService.EnableOciMenu"
64+
:options="trueOrFalseOptions"
65+
/>
6366
</div>
6467
</div>
65-
<div class="column is-one-quarter">
68+
69+
<div class="column is-2">
6670
<div class="field">
6771
<label
68-
v-html="highlight(ThunderServiceLabels[5])"
72+
v-html="highlight(APIServiceLabels[22])"
6973
class="label is-small"
7074
/>
71-
<CustomInput
72-
v-model="ThunderService.OciDataRetrieveJob.DaysThreshold"
73-
inputType="number"
75+
<CustomRadio
76+
v-model="APIService.EnableAwsMenu"
77+
:options="trueOrFalseOptions"
7478
/>
7579
</div>
7680
</div>
77-
<div class="column is-one-quarter">
81+
82+
<div class="column is-2">
7883
<div class="field">
7984
<label
80-
v-html="highlight(ThunderServiceLabels[6])"
85+
v-html="highlight(APIServiceLabels[23])"
8186
class="label is-small"
8287
/>
8388
<CustomRadio
84-
v-model="ThunderService.OciDataRetrieveJob.RunAtStartup"
89+
v-model="APIService.EnableGcpMenu"
8590
:options="trueOrFalseOptions"
8691
/>
8792
</div>
8893
</div>
8994
</div>
9095

9196
<hr class="my-3" />
92-
<p class="is-size-6 has-text-weight-semibold">Cloud Advisors</p>
97+
<p class="is-size-6 has-text-weight-semibold">Oci Data Retrieve Job</p>
9398

9499
<div class="columns is-multiline">
95-
<div class="column is-2">
100+
<div class="column is-one-quarter">
96101
<div class="field">
97102
<label
98-
v-html="highlight(APIServiceLabels[21])"
103+
v-html="highlight(ThunderServiceLabels[4])"
99104
class="label is-small"
100105
/>
101-
<CustomRadio
102-
v-model="APIService.EnableOciMenu"
103-
:options="trueOrFalseOptions"
104-
/>
106+
<CustomInput v-model="ThunderService.OciDataRetrieveJob.Crontab" />
105107
</div>
106108
</div>
107-
108-
<div class="column is-2">
109+
<div class="column is-one-quarter">
109110
<div class="field">
110111
<label
111-
v-html="highlight(APIServiceLabels[22])"
112+
v-html="highlight(ThunderServiceLabels[5])"
112113
class="label is-small"
113114
/>
114-
<CustomRadio
115-
v-model="APIService.EnableAwsMenu"
116-
:options="trueOrFalseOptions"
115+
<CustomInput
116+
v-model="ThunderService.OciDataRetrieveJob.DaysThreshold"
117+
inputType="number"
117118
/>
118119
</div>
119120
</div>
120-
121-
<div class="column is-2">
121+
<div class="column is-one-quarter">
122122
<div class="field">
123123
<label
124-
v-html="highlight(APIServiceLabels[23])"
124+
v-html="highlight(ThunderServiceLabels[6])"
125125
class="label is-small"
126126
/>
127127
<CustomRadio
128-
v-model="APIService.EnableGcpMenu"
128+
v-model="ThunderService.OciDataRetrieveJob.RunAtStartup"
129129
:options="trueOrFalseOptions"
130130
/>
131131
</div>

0 commit comments

Comments
 (0)