fix: make buttons standard, fix bugs

This commit is contained in:
Safwan Samsudeen 2025-01-08 15:26:26 +05:30
parent 1f1a5f04e1
commit 34422d1886
4 changed files with 7 additions and 3 deletions

View File

@ -205,6 +205,7 @@ export default class Bar {
); );
} }
this.progress_width = progress_width; this.progress_width = progress_width;
console.log(progress_width);
return progress_width; return progress_width;
} }

View File

@ -50,7 +50,7 @@ const DEFAULT_VIEW_MODES = [
}, },
{ {
name: 'Day', name: 'Day',
padding: '14d', padding: '7d',
format_string: 'YYYY-MM-DD', format_string: 'YYYY-MM-DD',
step: '1d', step: '1d',
lower_text: (d, ld, lang) => lower_text: (d, ld, lang) =>

View File

@ -285,7 +285,7 @@ export default class Gantt {
gantt_start = date_utils.start_of(gantt_start, this.config.unit); gantt_start = date_utils.start_of(gantt_start, this.config.unit);
gantt_end = date_utils.start_of(gantt_end, this.config.unit); gantt_end = date_utils.start_of(gantt_end, this.config.unit);
// handle single value for padding
if (!refresh) { if (!refresh) {
if (!this.options.infinite_padding) { if (!this.options.infinite_padding) {
if (typeof this.config.view_mode.padding === 'string') if (typeof this.config.view_mode.padding === 'string')
@ -308,6 +308,7 @@ export default class Gantt {
padding_end.duration, padding_end.duration,
padding_end.scale, padding_end.scale,
); );
console.log(this.gantt_start, this.gantt_end);
} else { } else {
this.gantt_start = date_utils.add( this.gantt_start = date_utils.add(
gantt_start, gantt_start,
@ -1185,6 +1186,7 @@ export default class Gantt {
} }
$.on(this.$container, 'scroll', (e) => { $.on(this.$container, 'scroll', (e) => {
console.log('f', e.target.scrollLeft);
let localBars = []; let localBars = [];
const ids = this.bars.map(({ group }) => const ids = this.bars.map(({ group }) =>
group.getAttribute('data-id'), group.getAttribute('data-id'),

View File

@ -129,7 +129,7 @@
font-weight: 400; font-weight: 400;
width: max-content; width: max-content;
margin-left: auto; margin-left: auto;
padding-left: 5px; padding-right: 5px;
padding-top: 5px; padding-top: 5px;
background: var(--g-header-background); background: var(--g-header-background);
} }
@ -164,6 +164,7 @@
& .side-header select { & .side-header select {
padding: 0; padding: 0;
padding-right: 1rem;
width: 50%; width: 50%;
} }