From 0a71b061fa99a35e804aafe3906be757f7a9668e Mon Sep 17 00:00:00 2001 From: Bernardo Cardoso Date: Wed, 10 Apr 2024 16:24:16 +0100 Subject: [PATCH] Added TODO --- core/src/components/chip/chip.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/components/chip/chip.tsx b/core/src/components/chip/chip.tsx index f35980802d..ba30e86671 100644 --- a/core/src/components/chip/chip.tsx +++ b/core/src/components/chip/chip.tsx @@ -50,6 +50,7 @@ export class Chip implements ComponentInterface { aria-disabled={this.disabled ? 'true' : null} class={createColorClasses(this.color, { [theme]: true, + // TODO(FW-6120): remove the theme==='ionic' when we add support for the `ios` and `md` modes. [`chip-${shape}`]: theme === 'ionic' && shape !== undefined, 'chip-outline': this.outline, 'chip-disabled': this.disabled,