@takagaki/cortex-decisions-viewer 0.4.25 → 0.4.26
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/render.js +6 -1
- package/package.json +1 -1
package/dist/render.js
CHANGED
|
@@ -917,7 +917,6 @@ const CLIENT_JS = `
|
|
|
917
917
|
ilist.appendChild(card);
|
|
918
918
|
});
|
|
919
919
|
sec.appendChild(ilist);
|
|
920
|
-
sec.appendChild(el("p", { class: "ds-note", text: "これらの更新は毎晩の Gold 昇格が読み取ります。" }));
|
|
921
920
|
}
|
|
922
921
|
|
|
923
922
|
if (sources.length || chatOff || devOff) {
|
|
@@ -967,6 +966,12 @@ const CLIENT_JS = `
|
|
|
967
966
|
sec.appendChild(wrap);
|
|
968
967
|
}
|
|
969
968
|
|
|
969
|
+
// 注記は内部・外部の両グループの後ろに1つ(内部の直下だけに置くと外部ソースが
|
|
970
|
+
// Gold昇格の対象外に見えるため)。除外の方法もここで案内する。
|
|
971
|
+
if (internals.length || sources.length || chatOff || devOff) {
|
|
972
|
+
sec.appendChild(el("p", { class: "ds-note", text: "上記の情報源はすべて毎晩の Gold 昇格が読み取ります(「除外」バッジのものを除く。チャンネル・リポジトリ単位で除外できます)。" }));
|
|
973
|
+
}
|
|
974
|
+
|
|
970
975
|
if (pipes.length) {
|
|
971
976
|
sec.appendChild(el("div", { class: "ds-sub", text: "自動化パイプライン" }));
|
|
972
977
|
var plist = el("div", { class: "ds-pipes" });
|
package/package.json
CHANGED