| Index: ui/file_manager/file_manager/foreground/js/ui/file_table.js
|
| diff --git a/ui/file_manager/file_manager/foreground/js/ui/file_table.js b/ui/file_manager/file_manager/foreground/js/ui/file_table.js
|
| index e8a574eb2d192b6fe7e67f5f068ea2c09c58433a..f89edd3de372ffa986836f2d6548948b8d1909ca 100644
|
| --- a/ui/file_manager/file_manager/foreground/js/ui/file_table.js
|
| +++ b/ui/file_manager/file_manager/foreground/js/ui/file_table.js
|
| @@ -742,8 +742,13 @@ FileTable.prototype.updateFileMetadata = function(item, entry) {
|
| /** @type {!HTMLDivElement} */ (item.querySelector('.date')), entry);
|
| this.updateSize_(
|
| /** @type {!HTMLDivElement} */ (item.querySelector('.size')), entry);
|
| - this.updateStatus_(
|
| - /** @type {!HTMLDivElement} */ (item.querySelector('.status')), entry);
|
| +
|
| + // The status column isn't always visible.
|
| + // TODO(kenobi): Clean up once the status column's fate is determined.
|
| + var statusEl = item.querySelector('.status');
|
| + if (statusEl) {
|
| + this.updateStatus_(/** @type {!HTMLDivElement} */ (statusEl), entry);
|
| + }
|
| };
|
|
|
| /**
|
|
|