mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* creating types, actions, reducer * load teams and store in redux * delete team * set search query action and tests * Teampages page * team members, bug in fetching team * flattened team state, tests for TeamMembers * test for team member selector * team settings * actions for group sync * tests for team groups * removed comment * remove old stores * fix: formating of datasource.go * fix: minor changes to imports * adding debounce and fixing issue in teamlist * refactoring: moving types to their own files
58 lines
1.1 KiB
Plaintext
58 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<div>
|
|
<h3
|
|
className="page-sub-heading"
|
|
>
|
|
Team Settings
|
|
</h3>
|
|
<form
|
|
className="gf-form-group"
|
|
name="teamDetailsForm"
|
|
onSubmit={[Function]}
|
|
>
|
|
<div
|
|
className="gf-form max-width-30"
|
|
>
|
|
<Component>
|
|
Name
|
|
</Component>
|
|
<input
|
|
className="gf-form-input max-width-22"
|
|
onChange={[Function]}
|
|
required={true}
|
|
type="text"
|
|
value="test"
|
|
/>
|
|
</div>
|
|
<div
|
|
className="gf-form max-width-30"
|
|
>
|
|
<Component
|
|
tooltip="This is optional and is primarily used to set the team profile avatar (via gravatar service)"
|
|
>
|
|
Email
|
|
</Component>
|
|
<input
|
|
className="gf-form-input max-width-22"
|
|
onChange={[Function]}
|
|
placeholder="team@email.com"
|
|
type="email"
|
|
value="test@test.com"
|
|
/>
|
|
</div>
|
|
<div
|
|
className="gf-form-button-row"
|
|
>
|
|
<button
|
|
className="btn btn-success"
|
|
type="submit"
|
|
>
|
|
Update
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
`;
|