-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not allow deletion of entry node #583
Conversation
Minimum allowed coverage is Generated by 🐒 cobertura-action against 5de83f0 |
@capital-G |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved
import { ref, type Ref } from "vue"; | ||
import { Tab, useInterfaceStore } from "@/stores/InterfaceStore"; | ||
import MenuTab from "./MenuTabHeader.vue"; | ||
import MenuTabEdit from "./MenuTabEdit.vue"; | ||
import MenuTabPlay from "./MenuTabPlay.vue"; | ||
import DialogExitGraph from "./DialogExitGraph.vue"; | ||
|
||
export type GraphMenu = Pick<Graph, "name" | "uuid" | "slugName">; | ||
export type GraphMenu = Pick<Graph, "name" | "uuid" | "slugName"> & { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not happy about this. What do you think @capital-G ?
export type GraphMenu = Pick<Graph, "name" | "uuid" | "slugName"> & { nodes: Array<any>; };
Aims to close #439