Skip to content

Commit 5280100

Browse files
Pull request #734: Integration/maker checker workflow
Merge in WALTZ/waltz from integration/maker-checker-workflow to db-feature/waltz-7488-maker-checker-workflow-enhancements-v1.81.0 * commit '1c320728ef0331cf2b8d7cd2c383859d8f0c1308': refactor added dashboard link for pending flows message update predicates for auto save Update badge link: stages → maturity in README.md
2 parents 11a2bcf + 1c32072 commit 5280100

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Getting started
2121
[![FINOS Hosted Platform - Waltz Demo](https://img.shields.io/badge/FINOS%20Hosted%20Platform-Waltz%20Demo-blue)](https://demo.waltz.finos.org/)
2222
[![postgres build](https://github.com/finos/waltz/actions/workflows/maven.yml/badge.svg)](https://github.com/finos/waltz/actions)
2323
[![Latest Version](https://badgers.space/github/release/finos/waltz)](https://github.com/finos/waltz/releases)
24-
[![FINOS - Active](https://cdn.jsdelivr.net/gh/finos/contrib-toolbox@master/images/badge-active.svg)](https://finosfoundation.atlassian.net/wiki/display/FINOS/Active)
24+
[![FINOS - Graduated](https://cdn.jsdelivr.net/gh/finos/contrib-toolbox@master/images/badge-graduated.svg)](https://community.finos.org/docs/governance/lifecycle-stages/graduated)
2525

2626
## Corporate Contributors
2727

@@ -106,4 +106,4 @@ SPDX-License-Identifier: [Apache-2.0](https://spdx.org/licenses/Apache-2.0)
106106

107107
## Security Reporting
108108

109-
Please refer to the Waltz [Security Policy](SECURITY.md) page.
109+
Please refer to the Waltz [Security Policy](SECURITY.md) page.

waltz-ng/client/attestation/components/confirmation/attestation-confirmation.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
<div style="margin-top: 0.5em"
5252
ng-if="!$ctrl.disabled && $ctrl.message">
5353
<waltz-markdown text="$ctrl.message"></waltz-markdown>
54+
<div style="margin-top: 0.5em ; margin-bottom: 0.5em">
55+
<a ui-sref="main.data-flow.dashboard"
56+
class="clickable">
57+
Go to Data Flow Dashboard
58+
</a>
59+
</div>
5460
</div>
5561

5662
<div

waltz-ng/client/survey/components/svelte/arc-survey-components/ARCTable.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
2929
export let instanceId;
3030
export let question;
31-
export let currentResponse = "";
31+
export let currentResponse;
3232
export let mode;
3333
export let linkedEntityKind = null;
3434
export let linkedEntityId = null;

waltz-ng/client/survey/components/svelte/arc-survey-components/ARCTableEdit.svelte

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,10 @@
218218
219219
const debouncedAutoSave = debounce(autoSave, 5000);
220220
221-
$: dirty && debouncedAutoSave();
221+
const isCurrentResponseUndefined = currentResponse === undefined;
222+
const noArcs = !arcs.length;
223+
224+
$: ((isCurrentResponseUndefined && noArcs) || dirty) && debouncedAutoSave();
222225
223226
onDestroy(() => {
224227
$arcSurveyState = [];
@@ -227,7 +230,7 @@
227230
228231
</script>
229232
230-
{#if currentResponse === undefined || startedOver}
233+
{#if (isCurrentResponseUndefined && !tableSaved) || startedOver}
231234
<div class="table-container">
232235
<table>
233236
<thead>

0 commit comments

Comments
 (0)