From d6f209ad08419fc2f018f0eb902cd21ad4b19e2f Mon Sep 17 00:00:00 2001 From: tugcekucukoglu Date: Wed, 20 Mar 2024 10:00:27 +0300 Subject: [PATCH] Refactor #5426 - For SelectButton --- components/lib/selectbutton/style/SelectButtonStyle.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/lib/selectbutton/style/SelectButtonStyle.js b/components/lib/selectbutton/style/SelectButtonStyle.js index f687764515..ebb43c206b 100644 --- a/components/lib/selectbutton/style/SelectButtonStyle.js +++ b/components/lib/selectbutton/style/SelectButtonStyle.js @@ -2,20 +2,20 @@ import BaseStyle from 'primevue/base/style'; const classes = { root: ({ props }) => [ - 'p-selectbutton p-button-group p-component', + 'p-selectbutton p-component', { 'p-disabled': props.disabled, 'p-invalid': props.invalid } ], button: ({ instance, option }) => [ - 'p-button p-component', + 'p-selectbutton-button', { 'p-highlight': instance.isSelected(option), 'p-disabled': instance.isOptionDisabled(option) } ], - label: 'p-button-label' + label: 'p-selectbutton-label' }; export default BaseStyle.extend({