From 1bd5a4eb5089845f7becfcc0bcac55f4f5fab280 Mon Sep 17 00:00:00 2001 From: Daniel Eshkeri Date: Fri, 13 Dec 2024 14:30:14 +0000 Subject: [PATCH] testing failure --- src/components/fab/fab.ts | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/components/fab/fab.ts b/src/components/fab/fab.ts index c9dc83a..4fdeef1 100644 --- a/src/components/fab/fab.ts +++ b/src/components/fab/fab.ts @@ -55,18 +55,25 @@ export class ZetaFab extends Flavored(BaseButton) { @property({ type: String, reflect: true }) size: "small" | "large" = "small"; - private getLabel() { - return this.label ? html`
${this.label}
` : nothing; - } protected render() { return html` - ${this.extended ? nothing : this.getLabel()} `; } + // private getLabel() { + // return this.label ? html`
${this.label}
` : nothing; + // } + // protected render() { + // return html` + // + // ${this.extended ? nothing : this.getLabel()} + // `; + // } } declare global {