Skip to content

Commit

Permalink
fix(frontend): remove variable set description validation (#3404)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Nov 27, 2023
1 parent b46d547 commit 7bbafb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/services/VariableSet.service.ts
Expand Up @@ -8,8 +8,8 @@ const VariableSetService = () => ({
};
},

validateDraft({name = '', description = '', values = []}: VariableSet) {
return !!name && !!description && !!values.length;
validateDraft({name = '', values = []}: VariableSet) {
return !!name && !!values.length;
},
});

Expand Down

0 comments on commit 7bbafb4

Please sign in to comment.