From 0aacd8ed2e102d75d22b7e623e1e91ac961933a1 Mon Sep 17 00:00:00 2001
From: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 25 Sep 2024 00:18:55 +0000
Subject: [PATCH] chore(deps): bump shiki from 1.12.1 to 1.18.0 (#1436)
---
quartz/components/scripts/explorer.inline.ts | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/quartz/components/scripts/explorer.inline.ts b/quartz/components/scripts/explorer.inline.ts
index 3eb25ea..584de6c 100644
--- a/quartz/components/scripts/explorer.inline.ts
+++ b/quartz/components/scripts/explorer.inline.ts
@@ -17,6 +17,10 @@
function toggleExplorer(this: HTMLElement) {
this.classList.toggle("collapsed")
+ this.setAttribute(
+ "aria-expanded",
+ this.getAttribute("aria-expanded") === "true" ? "false" : "true",
+ )
const content = this.nextElementSibling as MaybeHTMLElement
if (!content) return
--
Gitblit v1.10.0