Skip to content

Commit

Permalink
Remove old Indicators widget
Browse files Browse the repository at this point in the history
It was used for testing and can now be replaces by `VeryGenericIndicator` mini-widgets as desired.
  • Loading branch information
rafaellehmkuhl committed Oct 24, 2023
1 parent 545779c commit d670b49
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 94 deletions.
89 changes: 0 additions & 89 deletions src/components/widgets/Indicators.vue

This file was deleted.

1 change: 0 additions & 1 deletion src/types/widgets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export enum WidgetType {
CompassHUD = 'CompassHUD',
IFrame = 'IFrame',
ImageViewer = 'ImageViewer',
Indicators = 'Indicators',
Map = 'Map',
MiniWidgetsBar = 'MiniWidgetsBar',
URLVideoPlayer = 'URLVideoPlayer',
Expand Down
4 changes: 0 additions & 4 deletions src/views/WidgetsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
<template v-if="widget.component === WidgetType.ImageViewer">
<ImageView :widget="widget" />
</template>
<template v-if="widget.component === WidgetType.Indicators">
<Indicators :widget="widget" />
</template>
<template v-if="widget.component === WidgetType.Map">
<Map :widget="widget" />
</template>
Expand Down Expand Up @@ -68,7 +65,6 @@ import Compass from '../components/widgets/Compass.vue'
import CompassHUD from '../components/widgets/CompassHUD.vue'
import DepthHUD from '../components/widgets/DepthHUD.vue'
import IFrame from '../components/widgets/IFrame.vue'
import Indicators from '../components/widgets/Indicators.vue'
import Map from '../components/widgets/Map.vue'
import MiniWidgetsBar from '../components/widgets/MiniWidgetsBar.vue'
import URLVideoPlayer from '../components/widgets/URLVideoPlayer.vue'
Expand Down

0 comments on commit d670b49

Please sign in to comment.