chore: bump dependencies (#3258)

Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
This commit is contained in:
Akash K
2023-08-21 09:06:30 +05:30
committed by GitHub
parent 10bb68a538
commit 8c57d81718
56 changed files with 6351 additions and 5462 deletions

View File

@@ -23,7 +23,7 @@
<div v-else class="space-y-8">
<div
class="h-24 rounded bg-primaryLight -mb-11 md:h-32"
style="background-image: url('/images/cover.svg')"
style="background-image: url(&quot;/images/cover.svg&quot;)"
></div>
<div class="flex flex-col justify-between px-4 space-y-8 md:flex-row">
<div class="flex items-end">

View File

@@ -108,7 +108,7 @@
</template>
<RealtimeLog
:title="t('mqtt.log')"
:log="((tab.id === 'all' ? logs : tab.logs) as LogEntryData[])"
:log="(tab.id === 'all' ? logs : tab.logs) as LogEntryData[]"
@delete="clearLogEntries()"
/>
</HoppSmartWindow>

View File

@@ -239,7 +239,7 @@
<template #secondary>
<RealtimeLog
:title="t('socketio.log')"
:log="(log as LogEntryData[])"
:log="log as LogEntryData[]"
@delete="clearLogEntries()"
/>
</template>

View File

@@ -57,7 +57,7 @@
<template #secondary>
<RealtimeLog
:title="t('sse.log')"
:log="(log as LogEntryData[])"
:log="log as LogEntryData[]"
@delete="clearLogEntries()"
/>
</template>

View File

@@ -169,7 +169,7 @@
<template #secondary>
<RealtimeLog
:title="t('websocket.log')"
:log="(log as LogEntryData[])"
:log="log as LogEntryData[]"
@delete="clearLogEntries()"
/>
</template>