mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Remove commented-out and unused allowLineBreaks settings for binop explain
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
ff41d45bae
commit
d7bacf96c7
|
@ -326,12 +326,8 @@ const explainError = (
|
||||||
const VectorVectorBinaryExprExplainView: FC<
|
const VectorVectorBinaryExprExplainView: FC<
|
||||||
VectorVectorBinaryExprExplainViewProps
|
VectorVectorBinaryExprExplainViewProps
|
||||||
> = ({ node, lhs, rhs }) => {
|
> = ({ node, lhs, rhs }) => {
|
||||||
// TODO: Don't use Mantine's local storage as a one-off here.
|
// TODO: Don't use Mantine's local storage as a one-off here. Decide whether we
|
||||||
// const [allowLineBreaks, setAllowLineBreaks] = useLocalStorage<boolean>({
|
// want to keep Redux, and then do it only via one or the other everywhere.
|
||||||
// key: "queryPage.explain.binaryOperators.breakLongLines",
|
|
||||||
// defaultValue: true,
|
|
||||||
// });
|
|
||||||
|
|
||||||
const [showSampleValues, setShowSampleValues] = useLocalStorage<boolean>({
|
const [showSampleValues, setShowSampleValues] = useLocalStorage<boolean>({
|
||||||
key: "queryPage.explain.binaryOperators.showSampleValues",
|
key: "queryPage.explain.binaryOperators.showSampleValues",
|
||||||
defaultValue: false,
|
defaultValue: false,
|
||||||
|
|
Loading…
Reference in a new issue