Skip to content

Commit c3b970e

Browse files
authored
Merge pull request #995 from ercole-io/fix-bugs
Fix bugs
2 parents b60e92f + 40d1c78 commit c3b970e

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

src/views/exadata/PatchAdvisors.vue

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
</template>
3434

3535
<template slot="bodyData" slot-scope="rowData">
36-
<TdContent :value="rowData.scope.hostname" />
37-
<TdContent :value="rowData.scope.rackID" />
38-
<TdContent :value="rowData.scope.imageVersion" />
39-
<TdContent :value="rowData.scope.date" />
40-
<TdIcon :value="rowData.scope.fourMonths" />
41-
<TdIcon :value="rowData.scope.sixMonths" />
42-
<TdIcon :value="rowData.scope.twelveMonths" />
36+
<TdContent class="no-click" :value="rowData.scope.hostname" />
37+
<TdContent class="no-click" :value="rowData.scope.rackID" />
38+
<TdContent class="no-click" :value="rowData.scope.imageVersion" />
39+
<TdContent class="no-click" :value="rowData.scope.date" />
40+
<TdIcon class="no-click" :value="rowData.scope.fourMonths" />
41+
<TdIcon class="no-click" :value="rowData.scope.sixMonths" />
42+
<TdIcon class="no-click" :value="rowData.scope.twelveMonths" />
4343
</template>
4444

4545
<ExportButton
@@ -104,4 +104,8 @@ export default {
104104
}
105105
</script>
106106

107-
<style lang="scss" scoped></style>
107+
<style lang="scss" scoped>
108+
.no-click {
109+
cursor: default;
110+
}
111+
</style>

src/views/settings/Settings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default {
5959
return {
6060
isMounted: false,
6161
isOpen: 0,
62-
activeTab: 1,
62+
activeTab: 0,
6363
settingsData: [
6464
{
6565
order: 0,

0 commit comments

Comments
 (0)