File tree Expand file tree Collapse file tree 4 files changed +19
-5
lines changed
Expand file tree Collapse file tree 4 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 11<template >
22 <section class =" columns" >
33 <BoxContent class =" column" title =" Category" border >
4- <GhostLoading :isLoading =" loadingTableStatus" setHeight =" 350 " >
4+ <GhostLoading :isLoading =" loadingTableStatus" setHeight =" 300 " >
55 <ChartBuilder
66 chartType =" pie"
77 chartID =" category"
5656 </BoxContent >
5757
5858 <BoxContent class =" column" title =" Object Type" border >
59- <GhostLoading :isLoading =" loadingTableStatus" setHeight =" 350 " >
59+ <GhostLoading :isLoading =" loadingTableStatus" setHeight =" 300 " >
6060 <ChartBuilder
6161 chartType =" pie"
6262 chartID =" objectType"
111111 </BoxContent >
112112
113113 <BoxContent class =" column" title =" Suggestion" border >
114- <GhostLoading :isLoading =" loadingTableStatus" setHeight =" 350 " >
114+ <GhostLoading :isLoading =" loadingTableStatus" setHeight =" 300 " >
115115 <ChartBuilder
116116 chartType =" pie"
117117 chartID =" suggestion"
@@ -339,6 +339,18 @@ export default {
339339 show: true ,
340340 width: 0.3 ,
341341 },
342+ noData: {
343+ text: ' Thare are no data!' ,
344+ align: ' center' ,
345+ verticalAlign: ' middle' ,
346+ offsetX: 0 ,
347+ offsetY: 0 ,
348+ style: {
349+ color: undefined ,
350+ fontSize: ' 14px' ,
351+ fontFamily: undefined ,
352+ },
353+ },
342354 }
343355 },
344356 },
Original file line number Diff line number Diff line change 6969 <div class =" instances" >
7070 <GhostLoading :isLoading =" loading" setHeight =" 15" setWidth =" 15" >
7171 <p
72- v-if =" !loading && tech.extra.prettyName !== 'Ercole' "
72+ v-if =" !loading"
7373 :data-cy =" `${getTechnology(tech.extra.prettyName)}-instances`"
7474 v-tooltip =" options(`Instances: ${tech.instances}`)"
7575 >
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import _ from 'lodash'
22import { bus } from '@/helpers/eventBus.js'
33import { axiosRequest } from '@/services/services.js'
44import formatDateTime from '@/filters/formatDateTime.js'
5- // import awsData from '@/store/modules/cloud/aws-recommendations.json'
65
76export const state = ( ) => ( {
87 cloudRecommendations : [ ] ,
Original file line number Diff line number Diff line change @@ -111,6 +111,9 @@ export const getters = {
111111 } else if ( key === 'mongoDb' ) {
112112 order = 5
113113 product = 'MongoDB/MongoDB'
114+ } else if ( key === 'mariaDb' ) {
115+ order = 6
116+ product = 'MariaDBFoundation/MariaDB'
114117 }
115118
116119 techArray . push ( {
You can’t perform that action at this time.
0 commit comments