fix: projects should not be edited or deleted on the project list page

This commit is contained in:
Takeshi Kimata
2024-07-18 09:43:29 +09:00
parent 32ddf0f1d8
commit 76b7aa0dac
6 changed files with 11 additions and 116 deletions

View File

@@ -16,14 +16,11 @@ export type ProjectType = {
export type ProjectsMessages = {
projectList: string;
newProject: string;
editProject: string;
deleteProject: string;
id: string;
publicity: string;
name: string;
detail: string;
lastUpdate: string;
actions: string;
projectName: string;
projectDetail: string;
public: string;
@@ -31,11 +28,8 @@ export type ProjectsMessages = {
ifYouMakePublic: string;
close: string;
create: string;
update: string;
pleaseEnter: string;
noProjectsFound: string;
areYouSure: string;
delete: string;
};
export type ProjectMessages = {