aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-09-21 14:25:05 +0900
committerYasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>2026-09-21 14:25:05 +0900
commitd56735f9bd754bfceee58bc9a2fc39054e5a6e6f (patch)
treee212649902c209a3e88f13f934254eed3c84a675
parent4c8b7ca34614b4d29d7fead4b84b16e74da485c1 (diff)
astro.config.mjs: 年度グループの先頭リンクを「一覧」にする
年度グループの中の先頭項目が、グループ名と同じ「令和8年度」になっていたため 「一覧」に改めた。一般質問・委員会・請願の各一覧と同じ表記にそろえた。
-rw-r--r--astro.config.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/astro.config.mjs b/astro.config.mjs
index b11ffe5..c71827b 100644
--- a/astro.config.mjs
+++ b/astro.config.mjs
@@ -299,7 +299,7 @@ function year(dir, label, months) {
"3gatu": "3月定例会",
};
const items = [];
- items.push({ label: `${label}`, link: `ippan-situmon/${dir}/` });
+ items.push({ label: "一覧", link: `ippan-situmon/${dir}/` });
for (const m of months) {
items.push({
label: MONTHS[m],