mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Explore: updates Query Row component, moves latency to query row actions * Explore: updates query row actions - adds latency and removes add row button * Explore: updates explore toolbar props, adds index of the last query row * Explore: updates toolbar, adds add new row button * Explore: updates add new query row toolbar button title to add query * Explore: updates query row actions - adds disabled property on latency button * Explore: updates query row actions snapshot * Explore: updates styles * Explore: updates query row, removes latency * Explore: updates query row actions, removed latency * Explore: updates query row actions test and snapshot * Explore: updates toolbar, moves add new query row button below query rows * Explore: updates add query row button color and adds transparent background to latency div * Explore: updates styles for add query row button responsiveness * Explore: updates query row with latency button, fixes alignment of overall latency * Explore: updates query row actions snapshot * Explore: removes overall latency * Explore: updates query row latency - removes mouseover-triggered style changes * Explore: updates query row actions snapshot * Explore: moves styles from scss to emotion * Add row button: Removed responsiveness, reused query row styles Co-authored-by: David <david.kaltschmidt@gmail.com>
60 lines
1.0 KiB
Plaintext
60 lines
1.0 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"
|
|
disabled={true}
|
|
title="Query row latency"
|
|
>
|
|
0.0s
|
|
</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="Remove query"
|
|
>
|
|
<i
|
|
className="fa fa-minus"
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
`;
|