File tree Expand file tree Collapse file tree
attestation/components/confirmation
survey/components/svelte/arc-survey-components Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 ;
Original file line number Diff line number Diff line change 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 = [];
227230
228231</script>
229232
230- {#if currentResponse === undefined || startedOver}
233+ {#if (isCurrentResponseUndefined && !tableSaved) || startedOver}
231234<div class="table-container">
232235 <table>
233236 <thead>
You can’t perform that action at this time.
0 commit comments