Skip to content

Commit

Permalink
Merge pull request #57 from bitovi/wait-for-jql
Browse files Browse the repository at this point in the history
Wait for jql
  • Loading branch information
justinbmeyer authored Apr 16, 2024
2 parents d4182b8 + fea7fd1 commit 37beaa3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/dist/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/dist/main.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions public/timeline-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,9 @@ export class TimelineReport extends StacheElement {
{{# if( not(this.jql) ) }}
<div class="my-2 p-2 h-780 border-solid-1px-slate-900 border-box block overflow-hidden color-bg-white drop-shadow-md">Enter a JQL above.</div>
{{ /if }}
{{# and( not(this.jql), this.loginComponent.isLoggedIn }}
<div class="my-2 p-2 h-780 border-solid-1px-slate-900 border-box block overflow-hidden color-bg-white drop-shadow-md">Configure a JQL in the sidebar on the left to get started.</div>
{{ /and }}
{{# and(this.rawIssuesPromise.value, this.releases) }}
<div class="my-2 border-solid-1px-slate-900 border-box block overflow-hidden color-bg-white drop-shadow-md">
Expand Down Expand Up @@ -550,7 +550,7 @@ export class TimelineReport extends StacheElement {
loadChildren: saveJSONToUrl("loadChildren", false, Boolean, booleanParsing),
sortByDueDate: saveJSONToUrl("sortByDueDate", false, Boolean, booleanParsing),
hideUnknownInitiatives: saveJSONToUrl("hideUnknownInitiatives", false, Boolean, booleanParsing),
jql: saveJSONToUrl("jql", "issueType in (Initiative, Epic) order by Rank", String, {parse: x => ""+x, stringify: x => ""+x}),
jql: saveJSONToUrl("jql", "", String, {parse: x => ""+x, stringify: x => ""+x}),
primaryIssueType: saveJSONToUrl("primaryIssueType", "Epic", String, {parse: x => ""+x, stringify: x => ""+x}),
secondaryReportType: saveJSONToUrl("secondaryReportType", "none", String, {parse: x => ""+x, stringify: x => ""+x}),
primaryReportType: saveJSONToUrl("primaryReportType", "start-due", String, {parse: x => ""+x, stringify: x => ""+x}),
Expand Down

0 comments on commit 37beaa3

Please sign in to comment.