Skip to content

Commit

Permalink
Merge pull request #995 from ercole-io/fix-bugs
Browse files Browse the repository at this point in the history
Fix bugs
  • Loading branch information
rcmaiolini authored Nov 27, 2024
2 parents b60e92f + 40d1c78 commit c3b970e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 12 additions & 8 deletions src/views/exadata/PatchAdvisors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
</template>

<template slot="bodyData" slot-scope="rowData">
<TdContent :value="rowData.scope.hostname" />
<TdContent :value="rowData.scope.rackID" />
<TdContent :value="rowData.scope.imageVersion" />
<TdContent :value="rowData.scope.date" />
<TdIcon :value="rowData.scope.fourMonths" />
<TdIcon :value="rowData.scope.sixMonths" />
<TdIcon :value="rowData.scope.twelveMonths" />
<TdContent class="no-click" :value="rowData.scope.hostname" />
<TdContent class="no-click" :value="rowData.scope.rackID" />
<TdContent class="no-click" :value="rowData.scope.imageVersion" />
<TdContent class="no-click" :value="rowData.scope.date" />
<TdIcon class="no-click" :value="rowData.scope.fourMonths" />
<TdIcon class="no-click" :value="rowData.scope.sixMonths" />
<TdIcon class="no-click" :value="rowData.scope.twelveMonths" />
</template>

<ExportButton
Expand Down Expand Up @@ -104,4 +104,8 @@ export default {
}
</script>

<style lang="scss" scoped></style>
<style lang="scss" scoped>
.no-click {
cursor: default;
}
</style>
2 changes: 1 addition & 1 deletion src/views/settings/Settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export default {
return {
isMounted: false,
isOpen: 0,
activeTab: 1,
activeTab: 0,
settingsData: [
{
order: 0,
Expand Down

0 comments on commit c3b970e

Please sign in to comment.