Skip to content

Commit 712f383

Browse files
authored
Merge pull request #1010 from ercole-io/fix-bugs
Merge pull request #1009 from ercole-io/fix-bugs
2 parents 34dda08 + 827af16 commit 712f383

File tree

4 files changed

+44
-44
lines changed

4 files changed

+44
-44
lines changed

src/components/hosts/hostDetails/oracle/databases/DbDiskGroups.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<v-th sortKey="diskGroupName">Disk Group Name</v-th>
1010
<v-th sortKey="totalSpace">Total Space (GB)</v-th>
1111
<v-th sortKey="usedSpace">Used Space (GB)</v-th>
12-
<v-th sortKey="percentageUsedSpace">Used Percentage</v-th>
12+
<v-th sortKey="percentageUsedSpace">Used Percentage (%)</v-th>
1313
<v-th sortKey="freeSpace">Free Space (GB)</v-th>
14-
<v-th sortKey="percentageFreeSpace">Free Percentage</v-th>
14+
<v-th sortKey="percentageFreeSpace">Free Percentage (%)</v-th>
1515
</template>
1616

1717
<template slot="bodyData" slot-scope="rowData">

src/components/licenses/contracts/Microsoft/MsSqlServerForm.vue

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,6 @@
66
:applyText="msSqlServer.id ? 'Update Contract' : 'Add Contract'"
77
cancelText="Cancel"
88
>
9-
<b-field label="Location" custom-class="is-small">
10-
<b-select
11-
size="is-small"
12-
placeholder="Select"
13-
v-model="msSqlServer.location"
14-
expanded
15-
data-cy="sqlserver-location"
16-
>
17-
<option v-for="(loc, index) in locationList" :key="index">
18-
{{ loc }}
19-
</option>
20-
</b-select>
21-
</b-field>
22-
239
<b-field
2410
label="Type *"
2511
custom-class="is-small"
@@ -273,6 +259,20 @@
273259
/>
274260
</b-field>
275261

262+
<b-field label="Location" custom-class="is-small">
263+
<b-select
264+
size="is-small"
265+
placeholder="Select"
266+
v-model="msSqlServer.location"
267+
expanded
268+
data-cy="sqlserver-location"
269+
>
270+
<option v-for="(loc, index) in locationList" :key="index">
271+
{{ loc }}
272+
</option>
273+
</b-select>
274+
</b-field>
275+
276276
<slot />
277277
</AdvancedFiltersBase>
278278
</template>

src/components/licenses/contracts/MySQL/MySqlContractsForm.vue

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,6 @@
66
:applyText="mysqlForm.id ? 'Update Contract' : 'Add Contract'"
77
cancelText="Cancel"
88
>
9-
<b-field label="Location" custom-class="is-small">
10-
<b-select
11-
size="is-small"
12-
placeholder="Select"
13-
v-model="mysqlForm.location"
14-
expanded
15-
data-cy="mysql-location"
16-
>
17-
<option v-for="(loc, index) in locationList" :key="index">
18-
{{ loc }}
19-
</option>
20-
</b-select>
21-
</b-field>
22-
239
<b-field
2410
label="Type *"
2511
custom-class="is-small"
@@ -297,6 +283,20 @@
297283
</b-taginput>
298284
</b-field>
299285

286+
<b-field label="Location" custom-class="is-small">
287+
<b-select
288+
size="is-small"
289+
placeholder="Select"
290+
v-model="mysqlForm.location"
291+
expanded
292+
data-cy="mysql-location"
293+
>
294+
<option v-for="(loc, index) in locationList" :key="index">
295+
{{ loc }}
296+
</option>
297+
</b-select>
298+
</b-field>
299+
300300
<slot />
301301
</AdvancedFiltersBase>
302302
</template>

src/components/licenses/contracts/Oracle/OracleContractsForm.vue

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,6 @@
88
"
99
:cancelText="$t('common.forms.cancel')"
1010
>
11-
<b-field label="Location" custom-class="is-small">
12-
<b-select
13-
size="is-small"
14-
placeholder="Select"
15-
v-model="oracleForm.location"
16-
expanded
17-
data-cy="oracle-location"
18-
>
19-
<option v-for="(loc, index) in locationList" :key="index">
20-
{{ loc }}
21-
</option>
22-
</b-select>
23-
</b-field>
24-
2511
<b-field
2612
:label="`${$t('common.fields.agreeNumber')} *`"
2713
custom-class="is-small"
@@ -357,6 +343,20 @@
357343
</div>
358344
</b-field>
359345

346+
<b-field label="Location" custom-class="is-small">
347+
<b-select
348+
size="is-small"
349+
placeholder="Select"
350+
v-model="oracleForm.location"
351+
expanded
352+
data-cy="oracle-location"
353+
>
354+
<option v-for="(loc, index) in locationList" :key="index">
355+
{{ loc }}
356+
</option>
357+
</b-select>
358+
</b-field>
359+
360360
<slot />
361361
</AdvancedFiltersBase>
362362
</template>

0 commit comments

Comments
 (0)