- bug fixes Testphase Januar 2020

This commit is contained in:
Arno Kaimbacher 2020-01-23 17:52:26 +01:00
parent d323e1d4bb
commit a773fe2a1d
29 changed files with 1238 additions and 496 deletions

View file

@ -8,7 +8,7 @@ function initialState() {
rights: null,
project_id: "",
creating_corporation: "GBA Repository",
creating_corporation: "TETHYS RDR",
language: "",
embargo_date: "",
belongs_to_bibliography: 0,
@ -70,7 +70,7 @@ export default class Dataset extends Vue {
rights = null;
project_id = "";
creating_corporation = "TETHYS Repository";
creating_corporation = "TETHYS RDR";
language = "";
embargo_date = "";
belongs_to_bibliography = 0;

View file

@ -14,7 +14,7 @@
v-model="geolocation.x_min"
data-vv-scope="step-2"
id="xmin"
v-validate="'decimal'"
v-validate="'decimal|required'"
/>
</div>
@ -27,7 +27,7 @@
v-model="geolocation.y_min"
data-vv-scope="step-2"
id="ymin"
v-validate="'decimal'"
v-validate="'decimal|required'"
/>
</div>
@ -40,7 +40,7 @@
v-model="geolocation.x_max"
data-vv-scope="step-2"
id="xmax"
v-validate="'decimal'"
v-validate="'decimal|required'"
/>
</div>
@ -53,7 +53,7 @@
v-model="geolocation.y_max"
data-vv-scope="step-2"
id="ymax"
v-validate="'decimal'"
v-validate="'decimal|required'"
/>
</div>
<input type="button" v-if="validBoundingBox" v-on:click="zoomTo" value="validate coordinates" />