Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: block names in listing option settings
  • Loading branch information
lacknere committed May 11, 2026
commit 1b3bca9767f56cfbc3c0630dd0f7e85b3cad769e
6 changes: 5 additions & 1 deletion UPGRADE-6.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -988,9 +988,13 @@ Use the parent blocks instead
## File accessibility changed from public to private
`administration/src/module/sw-newsletter-recipient/page/sw-newsletter-recipient-list/index.js`

## The following template blocks have been replaced due to a typo in their name
## The following template blocks have been replaced due to typos or misleading names:
* `sw_condiiton_date_range_field_to_date` -> `sw_condition_date_range_field_to_date`
* `sw_cms_detail_stage_empty_stade_content` -> `sw_cms_detail_stage_empty_stage_content`
* `sw_settings_listing_option_base_smart_content` -> `sw_settings_listing_option_base_content`
* `sw_settings_listing_option_base_smart_content_general_info` -> `sw_settings_listing_option_base_content_general_info`
* `sw_settings_listing_option_base_smart_bar_actions_grid` -> `sw_settings_listing_option_base_content_criteria_grid`
* `sw_settings_listing_option_base_smart_bar_actions_grid_delete_modal` -> `sw_settings_listing_option_base_content_delete_modal`

## Removed .png and .jpg images

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6176,6 +6176,10 @@
"sw_settings_listing_delete_modal_footer_delete_button",
"sw_settings_listing_index",
"sw_settings_listing_option_base",
"sw_settings_listing_option_base_content",
"sw_settings_listing_option_base_content_criteria_grid",
"sw_settings_listing_option_base_content_delete_modal",
"sw_settings_listing_option_base_content_general_info",
"sw_settings_listing_option_base_language_switch",
"sw_settings_listing_option_base_smart_bar_actions",
"sw_settings_listing_option_base_smart_bar_actions_grid",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@
</template>
{% endblock %}

{% block sw_settings_listing_option_base_content %}
{# @deprecated tag:v6.8.0 - Block will be removed. Use `sw_settings_listing_option_base_content` instead. #}
{% block sw_settings_listing_option_base_smart_content %}
<template #content>

{% block sw_settings_listing_option_base_content_general_info %}
{# @deprecated tag:v6.8.0 - Block will be removed. Use `sw_settings_listing_option_base_content_general_info` instead. #}
{% block sw_settings_listing_option_base_smart_content_general_info %}
<sw-settings-listing-option-general-info
v-if="productSortingEntity"
Expand All @@ -40,7 +44,10 @@
:technical-name-error="sortingOptionTechnicalNameError"
/>
{% endblock %}
{% endblock %}

{% block sw_settings_listing_option_base_content_criteria_grid %}
{# @deprecated tag:v6.8.0 - Block will be removed. Use `sw_settings_listing_option_base_content_criteria_grid` instead. #}
{% block sw_settings_listing_option_base_smart_bar_actions_grid %}
<sw-settings-listing-option-criteria-grid
v-if="productSortingEntity"
Expand All @@ -51,7 +58,10 @@
@inline-edit-cancel="onCancelEditCriteria"
/>
{% endblock %}
{% endblock %}

{% block sw_settings_listing_option_base_content_delete_modal %}
{# @deprecated tag:v6.8.0 - Block will be removed. Use `sw_settings_listing_option_base_content_delete_modal` instead. #}
{% block sw_settings_listing_option_base_smart_bar_actions_grid_delete_modal %}
<sw-settings-listing-delete-modal
v-if="toBeDeletedCriteria"
Expand All @@ -61,7 +71,9 @@
@delete="onConfirmDeleteCriteria"
/>
{% endblock %}
{% endblock %}
</template>
{% endblock %}
{% endblock %}
</sw-page>
{% endblock %}
Loading