Skip to content

Commit

Permalink
docs: readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Mar 6, 2023
1 parent 0a99c7e commit 65dee84
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<p align="center">
The frontend for <a href='https://www.staticpi.com' target='_blank' rel='noopener noreferrer'>https://www.staticpi.com</a>,
<br>backend code <a href='https://www.github.com/mrjackwills/staticpi_backend' target='_blank' rel='noopener noreferrer'>(soon to be seen) here</a>
<br>backend code <a href='https://www.github.com/mrjackwills/staticpi_backend' target='_blank' rel='noopener noreferrer'>here</a>
</p>
<p align="center">
Built using <a href='https://vuejs.org/' target='_blank' rel='noopener noreferrer'>vue.js</a>,
Expand Down
7 changes: 5 additions & 2 deletions src/auto-imports.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// Generated by 'unplugin-auto-import'
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-auto-import
export {}
declare global {
const EffectScope: typeof import('vue')['EffectScope']
Expand Down Expand Up @@ -73,5 +76,5 @@ declare global {
// for type re-export
declare global {
// @ts-ignore
export type { Component,ComponentPublicInstance,ComputedRef,InjectionKey,PropType,Ref,VNode } from 'vue'
export type { Component, ComponentPublicInstance, ComputedRef, InjectionKey, PropType, Ref, VNode } from 'vue'
}
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const { mdAndUp, mobile, smAndDown } = useDisplay();
const heading = computed((): string => {
let suffix = props.tableRows.length>1 ? `s: ${props.tableRows.length}` : '';
return props.is_device ? 'device connection' : `client connection${suffix}`;
return props.is_device ? 'pi connection' : `client connection${suffix}`;
});
const icon = computed((): string => {
return props.is_device? props.online? mdiAccessPointNetwork : mdiAccessPointNetworkOff : props.online? mdiPlaylistCheck : mdiPlaylistRemove;
Expand Down
4 changes: 2 additions & 2 deletions src/views/DocumentationView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
</v-row>
</template>
</AppCard>

<AppCard
sm='12'
md='12'
lg='11'
xl='11'
my=''
class=' mb-n5'
class='mb-n5'
>
<template v-slot:body>
<v-row align='center' justify='center' class='no-gutters py-2' :class='smallText'>
Expand Down

0 comments on commit 65dee84

Please sign in to comment.