Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [UNRELEASED]

## [Unreleased]

### Added

- Added hours to Days zoom level

### Fixed

- Milestone sticker not visible
- Fix CSS since `dhtmlx-gantt` update to `9.0`
- Hide breadcrumb container in fullscreen mode with horizontal layout


## [1.1.1] - 2024-07-09

### Fixed
Expand Down
5 changes: 3 additions & 2 deletions js/gantt-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,10 @@ const GlpiGantt = (function() {
{
name: "day",
scale_height: 27,
min_column_width: 80,
min_column_width: 30,
scales: [
{ unit: "day", step: 1, format: "%d %M" }
{ unit: "day", step: 1, format: "%d %M" },
{ unit: "hour", step: 2, format: "%H" }
]
},
{
Expand Down