Moved footer to login page

This commit is contained in:
2020-09-28 18:04:26 +00:00
parent 5c9f093cae
commit 8ddb4260fb
3 changed files with 142 additions and 134 deletions

View File

@@ -244,42 +244,12 @@
</transition>
</v-container>
</v-main>
<!-- <v-footer
v-if="!isAuthenticated"
absolute
class="font-weight-medium body-2"
>
<v-col class="primary py-4 text-center white--text" cols="12">
<a
href="https://ayanova.com"
target="_blank"
style="text-decoration:none"
class="primary py-md-4 px-md-12 text-center white--text"
>
AyaNova {{ version }} {{ copyright }}
</a>
</v-col>
</v-footer> -->
<v-footer color="primary" padless v-if="!isAuthenticated">
<v-col class="text-center mb-10 mb-sm-2" cols="12">
<a
href="https://ayanova.com"
target="_blank"
style="text-decoration:none"
class="primary white--text text-caption"
>
AyaNova {{ version }} {{ copyright }}
</a>
</v-col>
</v-footer>
</v-app>
</template>
<script>
/* Xeslint-disable */
import ayaNovaVersion from "./api/ayanova-version";
import gzconfirm from "./components/gzconfirm";
import gznotify from "./components/gznotify";
import openObjectHandler from "./api/open-object-handler";
@@ -304,7 +274,6 @@ export default {
},
created() {
//Detect version change, wipe persisted form settings if has changed
let currentVersion = window.$gz.clientInfo.version;
if (currentVersion != window.$gz.store.state.lastClientVersion) {
window.$gz.store.commit(
@@ -393,12 +362,6 @@ export default {
navItems() {
return this.$store.state.navItems;
},
copyright() {
return ayaNovaVersion.copyright;
},
version() {
return ayaNovaVersion.version;
},
helpUrl() {
return this.$store.state.helpUrl;
}