Skip to content

Commit

Permalink
[SR PL] #163 only show last element in list when using log_metric()
Browse files Browse the repository at this point in the history
  • Loading branch information
pippinlee committed May 29, 2020
1 parent f877cb4 commit 6630ac4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion foundations_ui/src/js/actions/CommonActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ class CommonActions {
const cellType = this.getInputMetricCellType(input);
const isHoverable = this.getInputMetricIsHoverable(input);
if (cellType.match(/array*/)) {
inputValue = this.transformArraysToString(inputValue);
// Per: https://github.com/dessa-oss/atlas/issues/163
inputValue = inputValue.slice(-1);
}

const openModalJobDetails = jobID => {
Expand Down

0 comments on commit 6630ac4

Please sign in to comment.