14 lines
211 B
JavaScript
14 lines
211 B
JavaScript
|
export default () => ({
|
||
|
error: null,
|
||
|
isLoading: true,
|
||
|
|
||
|
// functions
|
||
|
functions: [],
|
||
|
hasFunctionData: true,
|
||
|
|
||
|
// function_details
|
||
|
hasPrometheus: true,
|
||
|
hasPrometheusData: false,
|
||
|
graphData: {},
|
||
|
});
|