mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Make graph and table collapsing just a UI thing * Remove showingGraph and showingTable, set them defaultly to true * Remove collaapsing for panels in Explore * UI toggle WiP * WIP, add query type * Refactor, clean up * Update tests * Clean uo * Update rangeAll to range and instant * Remove console logs * Update packages/grafana-data/src/types/datasource.ts Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com> * Update public/app/core/utils/explore.ts Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com> * Fix prettier error Co-authored-by: Zoltán Bedi <zoltan.bedi@gmail.com>
20 lines
316 B
Plaintext
20 lines
316 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`TableContainer should render component 1`] = `
|
|
<Collapse
|
|
isOpen={true}
|
|
label="Table"
|
|
loading={false}
|
|
>
|
|
<Memo(MetaInfoText)
|
|
metaItems={
|
|
Array [
|
|
Object {
|
|
"value": "0 series returned",
|
|
},
|
|
]
|
|
}
|
|
/>
|
|
</Collapse>
|
|
`;
|