File tree 2 files changed +6
-4
lines changed
client/src/components/timeline
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) {
60
60
61
61
<template >
62
62
<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 >
64
65
<div class =" flex items-center gap-2 px-1" >
65
66
<div v-tooltip.bottom-end =" { content: recordingTooltip }" class =" flex items-center gap1" @click =" toggleRecordingState" >
66
67
<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'
5
5
import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
6
6
import { defineConfig } from 'vite'
7
7
import inspect from 'vite-plugin-inspect'
8
+ import VueDevTools from 'vite-plugin-vue-devtools'
8
9
// https://vitejs.dev/config/
9
10
export default defineConfig ( {
10
11
plugins : [
11
12
vue ( ) ,
12
13
commonjs ( ) ,
13
- // VueDevTools({
14
- // // launchEditor: 'code',
15
- // }),
14
+ VueDevTools ( {
15
+ // launchEditor: 'code',
16
+ } ) ,
16
17
Unocss ( ) ,
17
18
AutoImport ( {
18
19
imports : [
You can’t perform that action at this time.
0 commit comments