more cleanup, weird extraneous "row" in v-row removed history form weirdness etc

This commit is contained in:
2020-04-19 22:31:53 +00:00
parent bdd2fda823
commit 318133186d
7 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<v-row row wrap v-if="!readonly"> <v-row v-if="!readonly">
<v-col cols="12"> <v-col cols="12">
<v-dialog v-model="dlgdate" persistent width="290px"> <v-dialog v-model="dlgdate" persistent width="290px">
<template v-slot:activator="{ on }"> <template v-slot:activator="{ on }">

View File

@@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<v-row row wrap v-if="!readonly"> <v-row v-if="!readonly">
<v-col xs6> <v-col xs6>
<v-dialog <v-dialog
ref="theDateDialog" ref="theDateDialog"

View File

@@ -27,7 +27,7 @@
</template> --> </template> -->
<template slot="no-data" v-if="tagSearchEntry"> <template slot="no-data" v-if="tagSearchEntry">
<v-container fluid> <v-container fluid>
<v-row row> <v-row>
<v-row justify-center> <v-row justify-center>
<v-chip color="primary" text-color="white" class="display-1"> <v-chip color="primary" text-color="white" class="display-1">
{{ this.normalizeTag(tagSearchEntry) }}</v-chip {{ this.normalizeTag(tagSearchEntry) }}</v-chip

View File

@@ -1,6 +1,6 @@
<template> <template>
<div> <div>
<v-row row wrap v-if="!readonly"> <v-row v-if="!readonly">
<v-col cols="12"> <v-col cols="12">
<v-dialog v-model="dlgtime" persistent width="290px"> <v-dialog v-model="dlgtime" persistent width="290px">
<template v-slot:activator="{ on }"> <template v-slot:activator="{ on }">

View File

@@ -1,5 +1,5 @@
<template> <template>
<v-row row v-if="this.formState.ready"> <v-row v-if="this.formState.ready">
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error> <gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<v-col> <v-col>
<v-card id="ayaNovaVersioncard"> <v-card id="ayaNovaVersioncard">

View File

@@ -1,10 +1,10 @@
<template> <template>
<v-card> <v-card v-if="this.formState.ready">
<v-card-title <v-card-title
><v-icon class="mr-3">{{ getIconForPage() }}</v-icon ><v-icon class="mr-3">{{ getIconForPage() }}</v-icon
>{{ name }}</v-card-title >{{ name }}</v-card-title
> >
<v-row row v-if="this.formState.ready"> <v-row>
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error> <gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<v-col rows="12"> <v-col rows="12">
@@ -112,16 +112,16 @@ export default {
let vm = this; let vm = this;
initForm(vm) initForm(vm)
.then(() => { .then(() => {
vm.formState.ready = true;
vm.readOnly = true; vm.readOnly = true;
window.$gz.eventBus.$on("menu-click", clickHandler); window.$gz.eventBus.$on("menu-click", clickHandler);
generateMenu(vm, false); generateMenu(vm, false);
vm.getDataFromApi(); vm.getDataFromApi();
}) })
.catch(err => { .catch(err => {
vm.formState.ready = true;
window.$gz.errorHandler.handleFormError(err, vm); window.$gz.errorHandler.handleFormError(err, vm);
})
.finally(function() {
vm.formState.ready = true;
}); });
}, },
data() { data() {

View File

@@ -1,5 +1,5 @@
<template> <template>
<v-row row v-if="this.formState.ready"> <v-row v-if="this.formState.ready">
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error> <gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
<v-col> <v-col>
<v-textarea v-model="logText" full-width readonly auto-grow></v-textarea> <v-textarea v-model="logText" full-width readonly auto-grow></v-textarea>