mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Update TeamSettings.tsx * Update navModel.ts * Update ChangePasswordForm.tsx * Update UserProfileEditForm.tsx * Update DashboardImportPage.tsx * Update uploadDashboardDirective.ts * Update ImportDashboardForm.tsx * Update ImportDashboardOverview.tsx * Update validation.ts * Update PlaylistEditPage.tsx * ui text edits * text edits * Update buildCategories.ts * text edits * text edits * Fix formatting * Update test snapshots Co-authored-by: dsotirakis <sotirakis.dim@gmail.com>
42 lines
928 B
Plaintext
42 lines
928 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Render should render component 1`] = `
|
|
<div
|
|
aria-label="Datasource settings page basic settings"
|
|
className="gf-form-group"
|
|
>
|
|
<div
|
|
className="gf-form-inline"
|
|
>
|
|
<div
|
|
className="gf-form max-width-30"
|
|
style={
|
|
Object {
|
|
"marginRight": "3px",
|
|
}
|
|
}
|
|
>
|
|
<FormLabel
|
|
tooltip="The name is used when you select the data source in panels. The default data source is preselected in new panels."
|
|
>
|
|
Name
|
|
</FormLabel>
|
|
<Input
|
|
aria-label="Data source settings page name input field"
|
|
className="gf-form-input max-width-23"
|
|
onChange={[Function]}
|
|
placeholder="Name"
|
|
required={true}
|
|
type="text"
|
|
value="Graphite"
|
|
/>
|
|
</div>
|
|
<Switch
|
|
checked={false}
|
|
label="Default"
|
|
onChange={[Function]}
|
|
/>
|
|
</div>
|
|
</div>
|
|
`;
|