From 6c62e6cdc9d6766986de23c3dc524a4797dbfb88 Mon Sep 17 00:00:00 2001 From: "Manu Mtz.-Almeida" Date: Thu, 13 Sep 2018 00:09:50 +0200 Subject: [PATCH] fix(anchor): make it activatable --- core/src/components/anchor/anchor.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/components/anchor/anchor.tsx b/core/src/components/anchor/anchor.tsx index 6d3ad9daa21..fa45f1f6597 100644 --- a/core/src/components/anchor/anchor.tsx +++ b/core/src/components/anchor/anchor.tsx @@ -33,7 +33,8 @@ export class Anchor { hostData() { return { - class: createColorClasses(this.color) + class: createColorClasses(this.color), + 'ion-activatable': true }; }