Skip to content

Commit

Permalink
[OGUI-1416] Update LayoutDto.js (#2116)
Browse files Browse the repository at this point in the history
* Update the restriction of tab-name in a layout from 10 to 20 characters
* Bump patch version
  • Loading branch information
graduta authored Sep 7, 2023
1 parent 085c550 commit 06e3097
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion QualityControl/lib/dtos/LayoutDto.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ObjectDto = Joi.object({

const TabsDto = Joi.object({
id: Joi.string().required(),
name: Joi.string().min(1).max(10).required(),
name: Joi.string().min(1).max(20).required(),
columns: Joi.number().min(1).max(5).default(2),
objects: Joi.array().max(30).items(ObjectDto).default([]),
});
Expand Down
4 changes: 2 additions & 2 deletions QualityControl/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion QualityControl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aliceo2/qc",
"version": "3.5.3",
"version": "3.5.4",
"description": "O2 Quality Control Web User Interface",
"author": "George Raduta",
"contributors": [
Expand Down

0 comments on commit 06e3097

Please sign in to comment.