Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FOUR-16829: It is not possible to resize the columns in MY TASK , MY CASES Dashboards #1652

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/components/renderer/form-requests.vue
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,7 @@ export default {
default: true,
truncate: true,
width: 314,
fixed_width: 314,
resizable: false
fixed_width: 314
},
{
label: "Status",
Expand All @@ -326,7 +325,6 @@ export default {
default: true,
width: 113,
fixed_width: 314,
resizable: false,
filter_subject: { type: "Status" }
},
{
Expand Down
15 changes: 5 additions & 10 deletions src/components/renderer/form-tasks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -330,17 +330,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 @@ -350,8 +348,7 @@ export default {
default: true,
width: 314,
truncate: true,
fixed_width: 314,
resizable: false
fixed_width: 314
}
];

Expand All @@ -362,8 +359,7 @@ export default {
sortable: true,
default: true,
width: 220,
fixed_width: 220,
resizable: false
fixed_width: 220
});
} else {
columns.push({
Expand All @@ -372,8 +368,7 @@ export default {
sortable: true,
default: true,
width: 220,
fixed_width: 220,
resizable: false
fixed_width: 220
});
}
columns.push({
Expand Down
Loading