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
9fcd4cf2
Unverified
Commit
9fcd4cf2
authored
5 years ago
by
Maz Ameli
Committed by
GitHub
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix up back buttons in Data Model (#11243)
* fix up back button in data model * remove colors import
parent
cdc9de48
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
frontend/src/metabase/admin/datamodel/containers/FieldApp.jsx
+18
-26
18 additions, 26 deletions
...tend/src/metabase/admin/datamodel/containers/FieldApp.jsx
with
18 additions
and
26 deletions
frontend/src/metabase/admin/datamodel/containers/FieldApp.jsx
+
18
−
26
View file @
9fcd4cf2
...
...
@@ -44,7 +44,6 @@ import { rescanFieldValues, discardFieldValues } from "../field";
// LIB
import
Metadata
from
"
metabase-lib/lib/metadata/Metadata
"
;
import
{
has_field_values_options
}
from
"
metabase/lib/core
"
;
import
{
color
}
from
"
metabase/lib/colors
"
;
import
{
getGlobalSettingsForColumn
}
from
"
metabase/visualizations/lib/settings/column
"
;
import
{
isCurrency
}
from
"
metabase/lib/schema_metadata
"
;
...
...
@@ -200,9 +199,9 @@ export default class FieldApp extends React.Component {
<
AdminLayout
sidebar
=
{
<
div
>
<
Header
>
<
div
className
=
"flex align-center mb2"
>
<
BackButton
databaseId
=
{
databaseId
}
tableId
=
{
tableId
}
/>
</
Header
>
</
div
>
<
LeftNavPane
>
<
LeftNavPaneItem
name
=
{
t
`General`
}
...
...
@@ -218,23 +217,21 @@ export default class FieldApp extends React.Component {
}
>
<
div
className
=
"wrapper"
>
<
Header
>
<
div
className
=
"mb4 py1 ml-auto mr-auto"
>
<
Breadcrumbs
crumbs
=
{
[
[
db
.
name
,
`/admin/datamodel/database/
${
db
.
id
}
`
],
[
table
.
display_name
,
`/admin/datamodel/database/
${
db
.
id
}
/table/
${
table
.
id
}
`
,
],
t
`
${
field
.
display_name
}
– Field Settings`
,
]
}
/>
</
div
>
<
div
className
=
"absolute top right mt4 mr4"
>
<
SaveStatus
ref
=
{
ref
=>
(
this
.
saveStatus
=
ref
)
}
/>
</
div
>
</
Header
>
<
div
className
=
"mb4 pt2 ml-auto mr-auto"
>
<
Breadcrumbs
crumbs
=
{
[
[
db
.
name
,
`/admin/datamodel/database/
${
db
.
id
}
`
],
[
table
.
display_name
,
`/admin/datamodel/database/
${
db
.
id
}
/table/
${
table
.
id
}
`
,
],
t
`
${
field
.
display_name
}
– Field Settings`
,
]
}
/>
</
div
>
<
div
className
=
"absolute top right mt4 mr4"
>
<
SaveStatus
ref
=
{
ref
=>
(
this
.
saveStatus
=
ref
)
}
/>
</
div
>
{
section
==
null
||
section
===
"
general
"
?
(
<
FieldGeneralPane
...
...
@@ -264,10 +261,6 @@ export default class FieldApp extends React.Component {
}
}
const
Header
=
({
children
,
height
=
50
})
=>
(
<
div
style
=
{
{
height
}
}
>
{
children
}
</
div
>
);
const
FieldGeneralPane
=
({
field
,
idfields
,
...
...
@@ -388,8 +381,7 @@ export const BackButton = ({
})
=>
(
<
Link
to
=
{
`/admin/datamodel/database/
${
databaseId
}
/table/
${
tableId
}
`
}
className
=
"circle text-white p2 flex align-center justify-center inline"
style
=
{
{
backgroundColor
:
color
(
"
bg-dark
"
)
}
}
className
=
"circle text-white p2 flex align-center justify-center bg-dark bg-brand-hover"
>
<
Icon
name
=
"arrow_back"
/>
</
Link
>
...
...
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