pipe-kan 0.21.1 → 0.22.0
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/pipe-kan.js
CHANGED
|
@@ -1015,7 +1015,7 @@ function withPipedBoardContext(board, clientContext = []) {
|
|
|
1015
1015
|
return [...pipedBoardContext(board), ...clientContext];
|
|
1016
1016
|
}
|
|
1017
1017
|
function formatBoardView(view) {
|
|
1018
|
-
const opener = view.kind === "epics" ? "All epics" : "All stories";
|
|
1018
|
+
const opener = view.kind === "epics" ? "All epics" : view.kind === "combined" ? "All combined" : "All stories";
|
|
1019
1019
|
const scope = view.selectedEpic ? `${opener}, children of ${view.selectedEpic}` : opener;
|
|
1020
1020
|
const lines = [
|
|
1021
1021
|
view.scope === "pipe" ? "The user is working with piped Jira issues (the full payload). Answer from these Jira issues. This is not GitHub and not the local source repo." : "The user attached the current Jira Kanban board (visible cards only). Answer from these Jira issues. This is not GitHub and not the local source repo.",
|