Skip to content

Commit

Permalink
Temp fix for foregound on Key icon
Browse files Browse the repository at this point in the history
  • Loading branch information
tschug committed Nov 5, 2023
1 parent 2f0ed5d commit b9e6510
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion force-app/main/default/lwc/key/key.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ export default class Key extends LightningElement {
if(this.bundle.CardIconBackground || this.bundle.CardIconCoreground ){
this.bundleDetails.IconClass = 'cardIcon slds-var-m-right_xx-small ';
} else {
this.bundleDetails.IconClass = 'slds-var-m-right_xx-small ';
// ! Was throwing error because it couldn't find this style 'cardIcon' to override... ?
this.bundleDetails.IconClass = 'cardIcon slds-var-m-right_xx-small ';
}

// console.log(JSON.stringify(this.bundleDetails));
Expand Down

0 comments on commit b9e6510

Please sign in to comment.