Skip to content

Commit 52ed5eb

Browse files
fix(gallery-web): revert the classname to the old one
1 parent df42758 commit 52ed5eb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/pluggableWidgets/gallery-web/src/Gallery.editorPreview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ const SelectionCounter = (): ReactNode => {
6363
{props.selectedCountTemplateSingular}
6464
</span>
6565
&nbsp;|&nbsp;
66-
<button className="widget-gallery-btn-link">{props.clearSelectionButtonLabel}</button>
66+
<button className="widget-gallery-clear-selection">{props.clearSelectionButtonLabel}</button>
6767
</div>
6868
);
6969
};

packages/pluggableWidgets/gallery-web/src/features/selection-counter/SelectionCounter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const SelectionCounter = observer(function SelectionCounter() {
1212
{selectionCounterVM.selectedCountText}
1313
</span>
1414
&nbsp;|&nbsp;
15-
<button className="widget-gallery-btn-link" onClick={() => selectActions.clearSelection()}>
15+
<button className="widget-gallery-clear-selection" onClick={() => selectActions.clearSelection()}>
1616
{selectionCounterVM.clearButtonLabel}
1717
</button>
1818
</div>

0 commit comments

Comments
 (0)