Anonymous | Login
Project:
RSS
  
News | My View | View Issues | Roadmap | Summary

View Issue DetailsJump to Notes ] Issue History ] Print ]
ID
0051764
TypeCategorySeverityReproducibilityDate SubmittedLast Update
defect[POS2] POStrivialalways2023-03-02 16:552023-03-02 16:55
ReportermigueldejuanaView Statuspublic 
Assigned ToTriage Platform Base 
PrioritynormalResolutionopenFixed in Version
StatusnewFix in branchFixed in SCM revision
ProjectionnoneETAnoneTarget Version
OSAnyDatabaseAnyJava version
OS VersionDatabase versionAnt version
Product VersionSCM revision 
Review Assigned To
Regression level
Regression date
Regression introduced in release
Regression introduced by commit
Triggers an Emergency PackNo
Summary

0051764: BaseButtonGroup must use StandardButton instead of BaseButton

DescriptionBaseButtonGroup is using BaseButton and therefore it has not some of the css features shared by all buttons that are defined in StandardButton.
Steps To Reproducen/a
Proposed Solution      <BaseButton
        key={`obc2BaseButtonGroupOption_${currentElementValue}`}
        testId={`obc2BaseButtonGroupOption_${currentElementValue}`}
        variantClass={`${variantClass} ${
          currentElementValue === value ? 'selected' : ''
        } ${icon ? 'withIcon' : ''}`}
        disabled={disabled}
        events={() => ({ onLeftClick: () => onChange(currentElementValue) })}
      >
        <BaseContent icon={icon} label={label} />
      </BaseButton>
    );


--->

      <StandardButton
        key={`obc2BaseButtonGroupOption_${currentElementValue}`}
        testId={`obc2BaseButtonGroupOption_${currentElementValue}`}
        icon={icon}
        label={label}
        variantClass={`${variantClass} ${
          currentElementValue === value ? 'selected' : ''
        } ${icon ? 'withIcon' : ''}`}
        disabled={disabled}
        events={() => ({ onLeftClick: () => onChange(currentElementValue) })}
      />
TagsNo tags attached.
Attached Files

- Relationships Relation Graph ] Dependency Graph ]

-  Notes
There are no notes attached to this issue.

- Issue History
Date Modified Username Field Change
2023-03-02 16:55 migueldejuana New Issue
2023-03-02 16:55 migueldejuana Assigned To => Triage Platform Base
2023-03-02 16:55 migueldejuana Triggers an Emergency Pack => No


Copyright © 2000 - 2009 MantisBT Group
Powered by Mantis Bugtracker