File tree 2 files changed +13
-12
lines changed
2 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <NuxtPwaManifest />
3
- <div class =" min-h-screen bg-gray-950" >
4
- <NuxtLayout v-if =" serialStore.hasSerial" class =" h-full" >
5
- <NuxtPage />
6
- </NuxtLayout >
7
- <div v-else >
8
- No WebSerial
2
+ <div >
3
+ <NuxtPwaManifest />
4
+ <div class =" min-h-screen bg-gray-950" >
5
+ <NuxtLayout v-if =" serialStore.hasSerial" class =" h-full" >
6
+ <NuxtPage />
7
+ </NuxtLayout >
8
+ <div v-else >
9
+ No WebSerial
10
+ </div >
11
+ <UNotifications />
9
12
</div >
10
- <UNotifications />
11
13
</div >
12
14
</template >
13
15
<script setup>
Original file line number Diff line number Diff line change 1
- import type { McuSettings } from '../eeprom' ;
2
1
import Flash from '../flash' ;
3
2
import Mcu , { type McuInfo } from '../mcu' ;
4
3
import CommandQueue from '~/src/communication/commands.queue' ;
@@ -58,9 +57,9 @@ export class FourWay {
58
57
public commandCount = 0 ;
59
58
60
59
constructor (
61
- private log : ( ( s : string ) => void ) ,
62
- private logError : ( ( s : string ) => void ) ,
63
- private logWarning : ( ( s : string ) => void )
60
+ private readonly log : ( ( s : string ) => void ) ,
61
+ private readonly logError : ( ( s : string ) => void ) ,
62
+ private readonly logWarning : ( ( s : string ) => void )
64
63
) {
65
64
}
66
65
You can’t perform that action at this time.
0 commit comments