more cleanup, weird extraneous "row" in v-row removed history form weirdness etc
This commit is contained in:
@@ -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 }">
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 }">
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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() {
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user