Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
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
dataplatform
atlas
Commits
ff5b1f17
Commit
ff5b1f17
authored
Sep 11, 2015
by
Venkatesh Seetharam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-152 TimeStamp fields not showing the details tab. Contributed by Vishal Kadam
parent
d1eef49e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
detailsController.js
dashboard/public/modules/details/detailsController.js
+2
-0
details.html
dashboard/public/modules/details/views/details.html
+2
-2
release-log.txt
release-log.txt
+3
-2
No files found.
dashboard/public/modules/details/detailsController.js
View file @
ff5b1f17
...
...
@@ -33,6 +33,8 @@ angular.module('dgc.details').controller('DetailsController', ['$window', '$scop
$scope
.
isTable
=
data
.
typeName
===
'Table'
;
});
$scope
.
isNumber
=
angular
.
isNumber
;
$scope
.
isString
=
angular
.
isString
;
$scope
.
onActivate
=
function
tabActivate
(
tabname
)
{
...
...
dashboard/public/modules/details/views/details.html
View file @
ff5b1f17
...
...
@@ -35,8 +35,8 @@
<tbody>
<tr
data-ng-repeat=
"(key,value) in details.values"
ng-if=
"value && !(key==='columns') && !(key==='name') && !(key==='description')"
>
<td>
{{key}}
</td>
<td
data-ng-if=
"!isString(value)"
data-ng-include=
"'/modules/details/views/attribute.html'"
></td>
<td
data-ng-if=
"isString(value)
"
>
{{value | date:'medium'}}
</td>
<td
data-ng-if=
"!isString(value)
&& !isNumber(value)
"
data-ng-include=
"'/modules/details/views/attribute.html'"
></td>
<td
data-ng-if=
"isString(value)
|| isNumber(value)"
>
{{value | date:'medium'}}
</td>
</tr>
</tbody>
</table>
...
...
release-log.txt
View file @
ff5b1f17
...
...
@@ -8,8 +8,9 @@ ATLAS-54 Rename configs in hive hook (shwethags)
ATLAS-3 Mixed Index creation fails with Date types (suma.shivaprasad via shwethags)
ALL CHANGES:
ATLAS-111
UI: Create Help Link (Vishal Kadam via Venkatesh Seetharam)
ATLAS-152 TimeStamp fields not showing the details tab (Vishal Kadam
via Venkatesh Seetharam)
ATLAS-111 UI: Create Help Link (Vishal Kadam via Venkatesh Seetharam)
ATLAS-113 Add an About Dialog to Apache Atlas UI with version number (Vishal Kadam
via Venkatesh Seetharam)
ATLAS-109 Remove v2 Folder (Vishal Kadam via Venkatesh Seetharam)
...
...
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