- Reintroduced the realtime dashboard tab in the navigation menu. - Updated Globe component to utilize geographic coordinates for live session locations. - Added dynamic resizing for the globe based on viewport width. - Implemented stop rotation feature on mouse down for better user interaction. - Cleaned up commented code and improved type definitions in event logging.
12 lines
328 B
Vue
12 lines
328 B
Vue
<template>
|
|
<main class="space-y-6">
|
|
<div class="flex flex-col gap-6 sm:gap-2 sm:flex-row sm:justify-between">
|
|
<DashboardNav class="flex-1">
|
|
Mode & TimeRange
|
|
</DashboardNav>
|
|
<!-- add filter -->
|
|
</div>
|
|
<DashboardRealtimeGlobe />
|
|
<!-- <DashboardRealtimeLogs /> -->
|
|
</main>
|
|
</template>
|