Skip to content

Commit

Permalink
Merge branch 'next' into bugfix/FOUR-17258
Browse files Browse the repository at this point in the history
  • Loading branch information
pmPaulis authored Jul 25, 2024
2 parents dd252eb + 001bfb8 commit fb3ff25
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 18 deletions.
4 changes: 2 additions & 2 deletions 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 package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@processmaker/screen-builder",
"version": "2.92.0",
"version": "2.93.0",
"scripts": {
"dev": "VITE_COVERAGE=true vite",
"build": "vite build",
Expand Down
5 changes: 1 addition & 4 deletions src/components/renderer/form-requests.vue
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ export default {
};
const tasksDropdown = [];
this.$emit("requestsCount", { dataControls, tasksDropdown });
this.$refs["form-case"].resetToOriginalWidths();
})
.catch(() => {
this.tableData = [];
Expand Down Expand Up @@ -303,8 +302,7 @@ export default {
default: true,
truncate: true,
width: 314,
fixed_width: 314,
resizable: false
fixed_width: 314
},
{
label: "Status",
Expand All @@ -313,7 +311,6 @@ export default {
default: true,
width: 113,
fixed_width: 113,
resizable: false,
filter_subject: { type: "Status" }
},
{
Expand Down
16 changes: 5 additions & 11 deletions src/components/renderer/form-tasks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,6 @@ export default {
dropdownShow: "tasks"
};
this.$emit("tasksCount", { dataControls, tasksDropdown });
this.$refs["form-task"].resetToOriginalWidths();
})
.catch(() => {
this.tableData = [];
Expand Down Expand Up @@ -332,17 +331,15 @@ export default {
default: true,
width: 153,
fixed_width: 153,
truncate: true,
resizable: false
truncate: true
},
{
label: "Priority",
field: "is_priority",
sortable: false,
default: true,
width: 48,
fixed_width: 48,
resizable: false
fixed_width: 48
},
{
label: "Case title",
Expand All @@ -352,8 +349,7 @@ export default {
default: true,
width: 314,
truncate: true,
fixed_width: 314,
resizable: false
fixed_width: 314
}
];
Expand All @@ -364,8 +360,7 @@ export default {
sortable: true,
default: true,
width: 220,
fixed_width: 220,
resizable: false
fixed_width: 220
});
} else {
columns.push({
Expand All @@ -374,8 +369,7 @@ export default {
sortable: true,
default: true,
width: 220,
fixed_width: 220,
resizable: false
fixed_width: 220
});
}
columns.push({
Expand Down

0 comments on commit fb3ff25

Please sign in to comment.