Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
42c19a54
Commit
42c19a54
authored
6 years ago
by
Maz Ameli
Browse files
Options
Downloads
Patches
Plain Diff
settings ui tweaks
parent
1b900459
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/metabase/visualizations/components/settings/ChartNestedSettingSeries.jsx
+14
-11
14 additions, 11 deletions
...izations/components/settings/ChartNestedSettingSeries.jsx
with
14 additions
and
11 deletions
frontend/src/metabase/visualizations/components/settings/ChartNestedSettingSeries.jsx
+
14
−
11
View file @
42c19a54
...
...
@@ -5,6 +5,7 @@ import React from "react";
import
ColorPicker
from
"
metabase/components/ColorPicker
"
;
import
ButtonGroup
from
"
metabase/components/ButtonGroup
"
;
import
Icon
from
"
metabase/components/Icon
"
;
import
IconWrapper
from
"
metabase/components/IconWrapper
"
;
import
type
{
NestedSettingComponentProps
}
from
"
./ChartSettingNestedSettings
"
;
...
...
@@ -37,15 +38,14 @@ export default class ChartNestedSettingSeries extends React.Component {
<
div
key
=
{
key
}
className
=
"pl4 pr2 pb2 mb2 border-bottom"
>
<
div
className
=
"flex align-center"
>
<
ColorPicker
className
=
"align-self-stretch"
value
=
{
settings
.
color
}
triggerSize
=
{
2
8
}
triggerSize
=
{
2
1
}
onChange
=
{
value
=>
onChangeObjectSettings
(
single
,
{
color
:
value
})
}
/>
<
input
className
=
"input
align-self-stretch
flex-full ml1"
className
=
"input flex-full ml1"
size
=
{
1
}
value
=
{
settings
.
title
}
onChange
=
{
e
=>
...
...
@@ -54,7 +54,7 @@ export default class ChartNestedSettingSeries extends React.Component {
/>
{
!
isStacked
?
(
<
ButtonGroup
className
=
"
align-self-stretch
ml1"
className
=
"ml1"
value
=
{
settings
.
display
}
options
=
{
[
"
line
"
,
"
area
"
,
"
bar
"
]
}
optionValueFn
=
{
o
=>
o
}
...
...
@@ -65,13 +65,16 @@ export default class ChartNestedSettingSeries extends React.Component {
/>
)
:
null
}
{
objects
.
length
>
1
?
(
<
Icon
className
=
"ml2 text-medium cursor-pointer text-brand-hover"
name
=
{
isSelected
(
single
)
?
"
chevronup
"
:
"
chevrondown
"
}
onClick
=
{
()
=>
onChangeEditingObject
(
isSelected
(
single
)
?
null
:
single
)
}
/>
<
IconWrapper
className
=
"ml1 p1"
>
<
Icon
className
=
"text-medium cursor-pointer text-brand-hover"
name
=
{
isSelected
(
single
)
?
"
chevronup
"
:
"
chevrondown
"
}
tooltip
=
{
isSelected
(
single
)
?
"
Hide options
"
:
"
More options
"
}
onClick
=
{
()
=>
onChangeEditingObject
(
isSelected
(
single
)
?
null
:
single
)
}
/>
</
IconWrapper
>
)
:
null
}
</
div
>
{
objectSettingsWidgets
&&
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment