diff --git a/src/pad/BottomBar.vue b/src/pad/BottomBar.vue index 00725cf..27ada8d 100644 --- a/src/pad/BottomBar.vue +++ b/src/pad/BottomBar.vue @@ -165,7 +165,7 @@ :class="'col-' + ($store.state.landspace ? '3' : '4')" >
-
+
@@ -389,16 +389,32 @@ export default defineComponent({ } }, onSignalSourceDrop(evt: any) { - emit_drop_events(evt, "signal_source"); + try { + emit_drop_events(evt, "signal_source"); + } catch (e) { + console.log(e); + } }, onPollingDrop(evt: any) { - emit_drop_events(evt, "polling"); + try { + emit_drop_events(evt, "polling"); + } catch (e) { + console.log(e); + } }, onModeDrop(evt: any) { - emit_drop_events(evt, "mode"); + try { + emit_drop_events(evt, "mode"); + } catch (e) { + console.log(e); + } }, onPlanDrop(evt: any) { - emit_drop_events(evt, "plan"); + try { + emit_drop_events(evt, "plan"); + } catch (e) { + console.log(e); + } }, volumeUp(evt: MouseEvent) { evt.stopPropagation(); diff --git a/src/pad/ContentWall.vue b/src/pad/ContentWall.vue index b10777e..f762d4d 100644 --- a/src/pad/ContentWall.vue +++ b/src/pad/ContentWall.vue @@ -9,7 +9,7 @@ width: wall_width + 'px', height: wall_height + 'px', }" - class="wall_content" + style="border: 1px solid black" >