@takagaki/cortex-decisions-viewer 0.12.34 → 0.12.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build.js +5 -0
- package/dist/render.js +1094 -129
- package/package.json +1 -1
package/dist/build.js
CHANGED
|
@@ -444,6 +444,11 @@ async function readFleetSources(repoRoot) {
|
|
|
444
444
|
meetingAliases: Array.isArray(s.meetingAliases)
|
|
445
445
|
? s.meetingAliases.filter((a) => typeof a === "string" && a !== "")
|
|
446
446
|
: undefined,
|
|
447
|
+
// 案件カレンダーの ID(#428)。🔴 **ここに列挙しないと画面へ届かない。**
|
|
448
|
+
// 落ちると、既にカレンダーがある案件でも初期表示が「案件カレンダーが
|
|
449
|
+
// まだありません」+「作る」になり、**押した人が 2 本目を作る**。
|
|
450
|
+
// ライブ(op=state)が届けば直るが、届く前に押せてしまう
|
|
451
|
+
calendarId: s.calendarId != null ? String(s.calendarId) : undefined,
|
|
447
452
|
driveSync: typeof s.driveSync === "boolean" ? s.driveSync : undefined,
|
|
448
453
|
enabled: typeof s.enabled === "boolean" ? s.enabled : undefined,
|
|
449
454
|
// 会議・資料の ON/OFF の現在値。**ここに列挙しないと画面へ届かない**
|