mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 01:23:32 -06:00
* AccessControl: Change teams permissions page when frontend is hit * Implement frontend changes for group sync * Changing the org/teams/edit permissions Co-authored-by: ievaVasiljeva <ieva.vasiljeva@grafana.com> * Fixing routes Co-authored-by: ievaVasiljeva <ieva.vasiljeva@grafana.com> * Use props straight away no need to go through the state Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com> * Update public/app/features/teams/TeamPages.tsx Co-authored-by: ievaVasiljeva <ieva.vasiljeva@grafana.com> Co-authored-by: Alex Khomenko <Clarity-89@users.noreply.github.com>
31 lines
585 B
Plaintext
31 lines
585 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<VerticalGroup>
|
|
<FieldSet
|
|
label="Team settings"
|
|
>
|
|
<Form
|
|
defaultValues={
|
|
Object {
|
|
"avatarUrl": "some/url/",
|
|
"email": "test@test.com",
|
|
"id": 1,
|
|
"memberCount": 1,
|
|
"name": "test",
|
|
"permission": 0,
|
|
}
|
|
}
|
|
disabled={false}
|
|
onSubmit={[Function]}
|
|
>
|
|
<Component />
|
|
</Form>
|
|
</FieldSet>
|
|
<SharedPreferences
|
|
disabled={false}
|
|
resourceUri="teams/1"
|
|
/>
|
|
</VerticalGroup>
|
|
`;
|