fixed e2e tests
gitea/salix/dev There was a failure building this commit
Details
gitea/salix/dev There was a failure building this commit
Details
This commit is contained in:
parent
a7b15c2dfc
commit
e99bae89b4
|
@ -1,7 +1,9 @@
|
||||||
node_modules
|
node_modules
|
||||||
dist/*
|
dist/*
|
||||||
e2e/dms/*/
|
e2e/dms/*/
|
||||||
!e2e/dms/temp/
|
!e2e/dms/c4c
|
||||||
|
!e2e/dms/c81
|
||||||
|
!e2e/dms/ecc
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
.eslintcache
|
.eslintcache
|
||||||
datasources.*.json
|
datasources.*.json
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
It works!
|
|
@ -0,0 +1 @@
|
||||||
|
It works!
|
|
@ -0,0 +1 @@
|
||||||
|
It works!
|
|
@ -25,9 +25,10 @@ export default class Controller {
|
||||||
}
|
}
|
||||||
|
|
||||||
set postcodeSelection(selection) {
|
set postcodeSelection(selection) {
|
||||||
|
const hasValue = this._postcodeSelection;
|
||||||
this._postcodeSelection = selection;
|
this._postcodeSelection = selection;
|
||||||
|
|
||||||
if (!selection) return;
|
if (!selection || !hasValue) return;
|
||||||
|
|
||||||
const town = selection.town;
|
const town = selection.town;
|
||||||
const province = town.province;
|
const province = town.province;
|
||||||
|
|
Loading…
Reference in New Issue