fix row width

This commit is contained in:
2020-03-10 17:12:46 +01:00
parent 10ab241836
commit ec24023943

View File

@@ -191,7 +191,7 @@ DirectoryElement.prototype.createFileButton = function(file, index) {
} }
{ {
let cell = document.createElement("div") let cell = document.createElement("div")
cell.style.minWidth = this.fieldDateWidth cell.style.width = this.fieldDateWidth
let label = document.createElement("span") let label = document.createElement("span")
label.innerText = printDate(new Date(file.dateCreated), true, true, false) label.innerText = printDate(new Date(file.dateCreated), true, true, false)
cell.appendChild(label) cell.appendChild(label)
@@ -199,7 +199,7 @@ DirectoryElement.prototype.createFileButton = function(file, index) {
} }
{ {
let cell = document.createElement("div") let cell = document.createElement("div")
cell.style.minWidth = this.fieldSizeWidth cell.style.width = this.fieldSizeWidth
let label = document.createElement("span") let label = document.createElement("span")
label.innerText = file.sizeLabel label.innerText = file.sizeLabel
cell.appendChild(label) cell.appendChild(label)
@@ -207,7 +207,7 @@ DirectoryElement.prototype.createFileButton = function(file, index) {
} }
{ {
let cell = document.createElement("div") let cell = document.createElement("div")
cell.style.minWidth = this.fieldTypeWidth cell.style.width = this.fieldTypeWidth
let label = document.createElement("span") let label = document.createElement("span")
label.innerText = file.type label.innerText = file.type
cell.appendChild(label) cell.appendChild(label)