Skip to content

Commit

Permalink
Rename LATEST_VERSION_CHILDREN collection logic to AGGREGATE_LATEST_V…
Browse files Browse the repository at this point in the history
…ERSION_CHILDREN to match new server changes

Signed-off-by: Ralf King <rkg@mm-software.com>
  • Loading branch information
rkg-mm committed Oct 4, 2024
1 parent 6d670b3 commit 79816b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/views/portfolio/projects/Project.vue
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ export default {
: xssFilters.inDoubleQuotedAttr(project.collectionTag.name);
title += `direct children with tag '${tag}'.`;
break;
case 'LATEST_VERSION_CHILDREN':
case 'AGGREGATE_LATEST_VERSION_CHILDREN':
title += 'latest versions of direct children.';
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/portfolio/projects/ProjectCreateProjectModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ export default {
),
},
{
value: 'LATEST_VERSION_CHILDREN',
value: 'AGGREGATE_LATEST_VERSION_CHILDREN',
text: this.$i18n.t(
'message.project_collection_logic_latest_version_children',
),
Expand Down
2 changes: 1 addition & 1 deletion src/views/portfolio/projects/ProjectDetailsModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ export default {
),
},
{
value: 'LATEST_VERSION_CHILDREN',
value: 'AGGREGATE_LATEST_VERSION_CHILDREN',
text: this.$i18n.t(
'message.project_collection_logic_latest_version_children',
),
Expand Down
2 changes: 1 addition & 1 deletion src/views/portfolio/projects/ProjectList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ export default {
: xssFilters.inDoubleQuotedAttr(row.collectionTag.name);
title += `direct children with tag '${tag}'.`;
break;
case 'LATEST_VERSION_CHILDREN':
case 'AGGREGATE_LATEST_VERSION_CHILDREN':
title += 'latest versions of direct children.';
break;
}
Expand Down

0 comments on commit 79816b7

Please sign in to comment.