mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
* Theme: Page styles move to emotion global styles and design tweaks * More style tweaks * tweaks * Updating snapshots * Another fix * Another fix * minor fix * More style tweaks to page toolbar and alert rule page * minor polish
52 lines
837 B
Plaintext
52 lines
837 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<Page
|
|
navModel={
|
|
Object {
|
|
"main": Object {
|
|
"text": "Configuration",
|
|
},
|
|
"node": Object {
|
|
"text": "Org details",
|
|
},
|
|
}
|
|
}
|
|
>
|
|
<PageContents
|
|
isLoading={true}
|
|
/>
|
|
</Page>
|
|
`;
|
|
|
|
exports[`Render should render organization and preferences 1`] = `
|
|
<Page
|
|
navModel={
|
|
Object {
|
|
"main": Object {
|
|
"text": "Configuration",
|
|
},
|
|
"node": Object {
|
|
"text": "Org details",
|
|
},
|
|
}
|
|
}
|
|
>
|
|
<PageContents
|
|
isLoading={false}
|
|
>
|
|
<VerticalGroup
|
|
spacing="lg"
|
|
>
|
|
<OrgProfile
|
|
onSubmit={[Function]}
|
|
orgName="Cool org"
|
|
/>
|
|
<SharedPreferences
|
|
resourceUri="org"
|
|
/>
|
|
</VerticalGroup>
|
|
</PageContents>
|
|
</Page>
|
|
`;
|