From 5baef00538cd7903cb48d16daf2144b223f7287a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20Skolasi=C5=84ski?= Date: Thu, 15 Aug 2024 14:38:54 +0200 Subject: [PATCH] docs: add missing semicolons --- www/content/attributes/hx-indicator.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/content/attributes/hx-indicator.md b/www/content/attributes/hx-indicator.md index 9f80813eb..0e273e482 100644 --- a/www/content/attributes/hx-indicator.md +++ b/www/content/attributes/hx-indicator.md @@ -31,10 +31,10 @@ that will show the spinner: transition: opacity 500ms ease-in; } .htmx-request .htmx-indicator{ - opacity:1 + opacity:1; } .htmx-request.htmx-indicator{ - opacity:1 + opacity:1; } ```