Skip to content

Commit

Permalink
Update to display of links in synop and csv forms (#60)
Browse files Browse the repository at this point in the history
* Move of link to csv2bufr docs page.

* Move of link to csv2bufr docs page.
  • Loading branch information
david-i-berry authored Aug 27, 2024
1 parent d40442b commit 7df3fcb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/components/CsvToBUFRForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
<v-card-title class="big-title">Submit CSV Data</v-card-title>
<v-dialog v-model="showDialog" width="auto">
<v-card>
<v-card-text>
See the <a href="https://docs.wis2box.wis.wmo.int/en/latest/user/data-ingest.html#wis2box-webapp">
WIS2box documentation</a> for information on CSV formatted data
</v-card-text>
<v-card-text>{{msg}}</v-card-text>
<v-card-actions>
<v-btn color="primary" block @click="showDialog = false">Close</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<v-card-text>
See the <a href="https://docs.wis2box.wis.wmo.int/en/latest/user/data-ingest.html#wis2box-webapp">
WIS2box documentation</a> for information on CSV formatted data
</v-card-text>
<v-stepper show-actions v-model="step">
<v-stepper-header>
<v-stepper-item
Expand Down Expand Up @@ -561,11 +561,11 @@
watch( datasetSelected, (val) => {
status.value.datasetIdentifier = !!val;
});
watch( incomingFile, (val) => {
status.value.fileLoaded = !!val;
});
watch( validationErrors, (val) => {
if( val && val.length > 0 ){
status.value.fileValidated = false;
Expand Down
3 changes: 2 additions & 1 deletion src/components/SynopForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
<!-- Form entry --><v-fade-transition appear>
<v-card>
<!-- Font size of title for tablets and desktops -->
<v-card-title class="big-title">Submit <a href="https://library.wmo.int/idviewer/35713/33">FM 12–XIV Ext. SYNOP</a> Bulletin</v-card-title>
<v-card-title class="big-title">Submit FM 12–XIV Ext. SYNOP Bulletin</v-card-title>
<v-card-text>See the WMO <a href="https://library.wmo.int/idviewer/35713/33">Manual on Codes, Volume I.1</a>, for a description of the FM 12-XIV Ext. SYNOP format</v-card-text>
<v-card-item>
<v-container>
<v-form>
Expand Down

0 comments on commit 7df3fcb

Please sign in to comment.