File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
client/src/components/timeline Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,8 @@ function toggleTimelineLayerEnabled(id: string) {
6060
6161<template >
6262 <div h-full flex flex-col p2 >
63- <div class =" mb-1 flex justify-end pb-1" border =" b dashed base" >
63+ <div class =" relative mb-1 w-full flex items-center justify-end pb-1" border =" b dashed base" >
64+ <span v-if =" !recordingState" class =" absolute left-0 text-xs text-gray-300 dark:text-gray-500" >Not recording</span >
6465 <div class =" flex items-center gap-2 px-1" >
6566 <div v-tooltip.bottom-end =" { content: recordingTooltip }" class =" flex items-center gap1" @click =" toggleRecordingState" >
6667 <span v-if =" recordingState" class =" recording recording-btn bg-[#ef4444]" />
Original file line number Diff line number Diff line change @@ -5,14 +5,15 @@ import AutoImport from 'unplugin-auto-import/vite'
55import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
66import { defineConfig } from 'vite'
77import inspect from 'vite-plugin-inspect'
8+ import VueDevTools from 'vite-plugin-vue-devtools'
89// https://vitejs.dev/config/
910export default defineConfig ( {
1011 plugins : [
1112 vue ( ) ,
1213 commonjs ( ) ,
13- // VueDevTools({
14- // // launchEditor: 'code',
15- // }),
14+ VueDevTools ( {
15+ // launchEditor: 'code',
16+ } ) ,
1617 Unocss ( ) ,
1718 AutoImport ( {
1819 imports : [
You can’t perform that action at this time.
0 commit comments