Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitakinger committed Jan 31, 2025
1 parent 3a154b1 commit dd17cf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export interface EditableDismissibleTabProps {
onClose: () => void;
onNameSave: (name: string) => void;
validateName: (name: string) => string | null;
canEdit?: boolean;
canEdit: boolean;
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface EditableEntityNameProps {
onExitEditing: () => void;
onNameSave: (name: string) => void;
validateName: (name: string) => string | null;
canEdit?: boolean;
canEdit: boolean;
isFixedWidth?: boolean;
size?: "small" | "medium";
}

0 comments on commit dd17cf1

Please sign in to comment.