From dd54075c520c5bce4fc0090c34dd69cbe8639bb6 Mon Sep 17 00:00:00 2001 From: FoxxMD Date: Mon, 1 Jun 2026 19:37:02 +0000 Subject: [PATCH] docs: Fix bad config example for id on aio in 0.14.0 upgrade --- docsite/docs/updating/upgrade-path/0140.mdx | 32 +++++++++++---------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/docsite/docs/updating/upgrade-path/0140.mdx b/docsite/docs/updating/upgrade-path/0140.mdx index f9c9e7a7..01ca1a91 100644 --- a/docsite/docs/updating/upgrade-path/0140.mdx +++ b/docsite/docs/updating/upgrade-path/0140.mdx @@ -75,22 +75,24 @@ Add an `id` to the top-level for each Source/Client configuration, next to `data Add an `id` to the top-level for each Source/Client configuration, next to `data`: -```json title="koito.json" -[ - { - "name": "koito-source", - "configureAs": "source", - "type": "koito", - // highlight-start - "id": "myKoitoID", - // highlight-end - "data": { - "token": "029b081ba-9156-4pe7-88e5-3be671f5ea2b", - "username": "admin", - "url": "http://192.168.0.100:4110" +```json title="config.json" +{ + "sources": [ + { + "name": "koito-source", + "configureAs": "source", + "type": "koito", + // highlight-start + "id": "myKoitoID", + // highlight-end + "data": { + "token": "029b081ba-9156-4pe7-88e5-3be671f5ea2b", + "username": "admin", + "url": "http://192.168.0.100:4110" + } } - } -] + ] +} ```