diff --git a/ui/app/templates/allocations/allocation/task/fs.hbs b/ui/app/templates/allocations/allocation/task/fs.hbs
index 8239b30a1..330ac7ecf 100644
--- a/ui/app/templates/allocations/allocation/task/fs.hbs
+++ b/ui/app/templates/allocations/allocation/task/fs.hbs
@@ -45,7 +45,7 @@
- {{x-icon "alert-circle-outline"}}
+ {{x-icon "alert-circle-outline"}}
Directory is empty
|
diff --git a/ui/app/templates/components/fs-directory-entry.hbs b/ui/app/templates/components/fs-directory-entry.hbs
index 11c4df032..cc55d30ff 100644
--- a/ui/app/templates/components/fs-directory-entry.hbs
+++ b/ui/app/templates/components/fs-directory-entry.hbs
@@ -2,9 +2,9 @@
{{#link-to "allocations.allocation.task.fs" task.allocation task pathToEntry activeClass="is-active"}}
{{#if entry.IsDir}}
- {{x-icon "folder-outline"}}
+ {{x-icon "folder-outline"}}
{{else}}
- {{x-icon "file-outline"}}
+ {{x-icon "file-outline"}}
{{/if}}
{{entry.Name}}
diff --git a/ui/tests/pages/allocations/task/fs.js b/ui/tests/pages/allocations/task/fs.js
index e924d7ce1..de2b834af 100644
--- a/ui/tests/pages/allocations/task/fs.js
+++ b/ui/tests/pages/allocations/task/fs.js
@@ -28,9 +28,9 @@ export default create({
directoryEntries: collection('[data-test-entry]', {
name: text('[data-test-name]'),
- isFile: isPresent('[data-test-file-icon]'),
- isDirectory: isPresent('[data-test-directory-icon]'),
- isEmpty: isPresent('[data-test-empty-icon]'),
+ isFile: isPresent('.icon-is-file-outline'),
+ isDirectory: isPresent('.icon-is-folder-outline'),
+ isEmpty: isPresent('.icon-is-alert-circle-outline'),
size: text('[data-test-size]'),
lastModified: text('[data-test-last-modified]'),
|