mirror of
https://github.com/Ellpeck/ObsidianSimpleTimeTracker.git
synced 2024-11-16 07:23:12 +01:00
Remove unneeded width setting
This commit is contained in:
parent
94631bc293
commit
5677e02243
3 changed files with 2 additions and 5 deletions
|
@ -282,7 +282,6 @@ class EditableField {
|
||||||
this.label = this.cell.createEl("span", { text: value });
|
this.label = this.cell.createEl("span", { text: value });
|
||||||
this.label.style.marginLeft = `${indent}em`;
|
this.label.style.marginLeft = `${indent}em`;
|
||||||
this.box = new TextComponent(this.cell).setValue(value);
|
this.box = new TextComponent(this.cell).setValue(value);
|
||||||
this.box.inputEl.width = 10;
|
|
||||||
this.box.inputEl.classList.add('simple-time-tracker-input');
|
this.box.inputEl.classList.add('simple-time-tracker-input');
|
||||||
this.box.inputEl.hide();
|
this.box.inputEl.hide();
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue