mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 16:45:43 -06:00
62 lines
1.1 KiB
Plaintext
62 lines
1.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`QueryRowActions should render component 1`] = `
|
|
<div
|
|
className="gf-form-inline flex-shrink-0"
|
|
>
|
|
<div
|
|
className="gf-form"
|
|
>
|
|
<button
|
|
aria-label="Edit mode button"
|
|
className="gf-form-label gf-form-label--btn"
|
|
onClick={[Function]}
|
|
>
|
|
<i
|
|
className="fa fa-pencil"
|
|
/>
|
|
</button>
|
|
</div>
|
|
<div
|
|
className="gf-form"
|
|
>
|
|
<button
|
|
className="gf-form-label gf-form-label--btn"
|
|
disabled={true}
|
|
onClick={[Function]}
|
|
title="Disable/enable query"
|
|
>
|
|
<i
|
|
className="fa fa-eye"
|
|
/>
|
|
</button>
|
|
</div>
|
|
<div
|
|
className="gf-form"
|
|
>
|
|
<button
|
|
className="gf-form-label gf-form-label--btn"
|
|
onClick={[Function]}
|
|
title="Add query"
|
|
>
|
|
<i
|
|
className="fa fa-plus"
|
|
/>
|
|
</button>
|
|
</div>
|
|
<div
|
|
className="gf-form"
|
|
>
|
|
<button
|
|
className="gf-form-label gf-form-label--btn"
|
|
onClick={[Function]}
|
|
title="Remove query"
|
|
>
|
|
<i
|
|
className="fa fa-minus"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|