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>
<div>
<v-row row wrap v-if="!readonly">
<v-row v-if="!readonly">
<v-col cols="12">
<v-dialog v-model="dlgdate" persistent width="290px">
<template v-slot:activator="{ on }">

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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