Skip to content

Commit

Permalink
refactor: migrate remaining metric-delta-selected-component -> cc-met…
Browse files Browse the repository at this point in the history
…ric-delta-selected

refs: #2318
  • Loading branch information
shaman-apprentice committed Sep 12, 2021
1 parent fa3f4ff commit 03ecd3a
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ <h2 class="node-name-h2">
{{ $ctrl._viewModel.node.attributes[$ctrl._viewModel.primaryMetricKeys.node.height] | number: 0 }}
</span>
</div>
<metric-delta-selected-component
attributekey="$ctrl._viewModel.primaryMetricKeys.node.height"
></metric-delta-selected-component>
<cc-metric-delta-selected
[attribute-key]="$ctrl._viewModel.primaryMetricKeys.node.height"
></cc-metric-delta-selected>
<p class="metric-name">{{ $ctrl._viewModel.primaryMetricKeys.node.height }}</p>
</td>
</tr>
Expand All @@ -76,9 +76,9 @@ <h2 class="node-name-h2">
{{ $ctrl._viewModel.node.attributes[$ctrl._viewModel.primaryMetricKeys.node.color] | number: 0 }}
</span>
</div>
<metric-delta-selected-component
attributekey="$ctrl._viewModel.primaryMetricKeys.node.color"
></metric-delta-selected-component>
<cc-metric-delta-selected
[attribute-key]="$ctrl._viewModel.primaryMetricKeys.node.color"
></cc-metric-delta-selected>
<p class="metric-name">{{ $ctrl._viewModel.primaryMetricKeys.node.color }}</p>
</td>

Expand Down Expand Up @@ -117,7 +117,7 @@ <h2 class="node-name-h2">
<span class="metric-value">{{ $ctrl._viewModel.node.attributes[attributeKey.name] | number: 0 }}</span>
</td>
<td ng-show="$ctrl._viewModel.node.deltas">
<metric-delta-selected-component attributekey="::attributeKey"></metric-delta-selected-component>
<cc-metric-delta-selected [attribute-key]="::attributeKey"></cc-metric-delta-selected>
</td>
<td class="metric-name">{{ attributeKey.name }}</td>
</tr>
Expand Down

0 comments on commit 03ecd3a

Please sign in to comment.