Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AmendsenProject
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shaik Janipasha
AmendsenProject
Commits
58ff2da7
Unverified
Commit
58ff2da7
authored
Nov 20, 2020
by
Marcos Iglesias
Committed by
GitHub
Nov 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding titles to Detail Page headers (#768)
Signed-off-by:
Marcos Iglesias Valle
<
golodhros@gmail.com
>
parent
fa70aaf2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
index.tsx
amundsen_application/static/js/pages/DashboardPage/index.tsx
+3
-1
index.tsx
amundsen_application/static/js/pages/ProfilePage/index.tsx
+3
-1
index.tsx
...sen_application/static/js/pages/TableDetailPage/index.tsx
+4
-1
No files found.
amundsen_application/static/js/pages/DashboardPage/index.tsx
View file @
58ff2da7
...
...
@@ -186,7 +186,9 @@ export class DashboardPage extends React.Component<
/>
</
div
>
<
div
className=
"header-section header-title"
>
<
h1
className=
"header-title-text truncated"
>
{
dashboard
.
name
}
</
h1
>
<
h1
className=
"header-title-text truncated"
title=
{
dashboard
.
name
}
>
{
dashboard
.
name
}
</
h1
>
<
BookmarkIcon
bookmarkKey=
{
dashboard
.
uri
}
resourceType=
{
ResourceType
.
dashboard
}
...
...
amundsen_application/static/js/pages/ProfilePage/index.tsx
View file @
58ff2da7
...
...
@@ -214,7 +214,9 @@ export class ProfilePage extends React.Component<
);
}
else
{
userName
=
(
<
h1
className=
"header-title-text truncated"
>
{
user
.
display_name
}
</
h1
>
<
h1
className=
"header-title-text truncated"
title=
{
user
.
display_name
}
>
{
user
.
display_name
}
</
h1
>
);
}
...
...
amundsen_application/static/js/pages/TableDetailPage/index.tsx
View file @
58ff2da7
...
...
@@ -305,7 +305,10 @@ export class TableDetail extends React.Component<
/>
</
div
>
<
div
className=
"header-section header-title"
>
<
h1
className=
"header-title-text truncated"
>
<
h1
className=
"header-title-text truncated"
title=
{
`${data.schema}.${data.name}`
}
>
<
Link
to=
"/search"
onClick=
{
this
.
handleClick
}
>
{
data
.
schema
}
</
Link
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment