Skip to content

Commit

Permalink
Removes ability to delete signal definitions in Web UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mvilanova committed Nov 14, 2024
1 parent 4408c52 commit 830f688
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 41 deletions.
35 changes: 0 additions & 35 deletions src/dispatch/static/dispatch/src/signal/DeleteDialog.vue

This file was deleted.

7 changes: 1 addition & 6 deletions src/dispatch/static/dispatch/src/signal/Table.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<template>
<v-container fluid>
<new-edit-dialog />
<delete-dialog />
<v-row no-gutters>
<v-col>
<v-alert closable icon="mdi-school" prominent text type="info">
Expand Down Expand Up @@ -88,9 +87,6 @@
<v-list-item @click="createEditShow(item)">
<v-list-item-title>View / Edit</v-list-item-title>
</v-list-item>
<v-list-item @click="removeShow(item)">
<v-list-item-title>Delete</v-list-item-title>
</v-list-item>
</v-list>
</v-menu>
</template>
Expand All @@ -105,11 +101,10 @@
import { mapFields } from "vuex-map-fields"
import { mapActions } from "vuex"
import NewEditDialog from "@/signal/NewEditDialog.vue"
import DeleteDialog from "@/signal/DeleteDialog.vue"
export default {
name: "SignalTable",
components: { NewEditDialog, DeleteDialog },
components: { NewEditDialog },
props: {
name: {
type: String,
Expand Down

0 comments on commit 830f688

Please sign in to comment.