Unwrap event titles in calendar view
All checks were successful
Java CI with Maven / build (push) Successful in 41s
All checks were successful
Java CI with Maven / build (push) Successful in 41s
This commit is contained in:
parent
cfd1bfe7cb
commit
6cdf069b38
@ -55,3 +55,6 @@ app-task-overview {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .cal-event-title {
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
@ -99,6 +99,7 @@ export class DraggableSchedulerComponent {
|
|||||||
this.events.push({
|
this.events.push({
|
||||||
title: this.computeTaskPath(schedule.taskgroupPath, schedule.task),
|
title: this.computeTaskPath(schedule.taskgroupPath, schedule.task),
|
||||||
color: colors['red'],
|
color: colors['red'],
|
||||||
|
cssClass: 'test',
|
||||||
start: new Date(advancedSchedule.scheduleStartTime),
|
start: new Date(advancedSchedule.scheduleStartTime),
|
||||||
end: new Date(advancedSchedule.scheduleStopTime),
|
end: new Date(advancedSchedule.scheduleStopTime),
|
||||||
draggable: true,
|
draggable: true,
|
||||||
@ -126,6 +127,7 @@ export class DraggableSchedulerComponent {
|
|||||||
color: colors['yellow'],
|
color: colors['yellow'],
|
||||||
start: new Date(),
|
start: new Date(),
|
||||||
draggable: true,
|
draggable: true,
|
||||||
|
cssClass: 'test',
|
||||||
resizable: {
|
resizable: {
|
||||||
beforeStart: true,
|
beforeStart: true,
|
||||||
afterEnd: true
|
afterEnd: true
|
||||||
|
@ -26,3 +26,6 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .cal-event-title {
|
||||||
|
white-space: normal;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user