Commit fdca5cf 1 parent 42a53ff commit fdca5cf Copy full SHA for fdca5cf
File tree 3 files changed +6
-6
lines changed
allocations/allocation/task
tests/pages/allocations/task
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 45
45
<tbody >
46
46
<tr data-test-entry>
47
47
<td colspan =" 3" >
48
- < span data-test-empty-icon> {{ x-icon " alert-circle-outline" }} </ span >
48
+ {{ x-icon " alert-circle-outline" }}
49
49
<span class =" name" data-test-name>Directory is empty</span >
50
50
</td >
51
51
</tr >
Original file line number Diff line number Diff line change 2
2
<td >
3
3
{{ #link-to " allocations.allocation.task.fs" task.allocation task pathToEntry activeClass =" is-active" }}
4
4
{{ #if entry.IsDir }}
5
- < span data-test-directory-icon> {{ x-icon " folder-outline" }} </ span >
5
+ {{ x-icon " folder-outline" }}
6
6
{{ else }}
7
- < span data-test-file-icon> {{ x-icon " file-outline" }} </ span >
7
+ {{ x-icon " file-outline" }}
8
8
{{ /if }}
9
9
10
10
<span class =" name" data-test-name>{{ entry.Name }} </span >
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ export default create({
28
28
directoryEntries : collection ( '[data-test-entry]' , {
29
29
name : text ( '[data-test-name]' ) ,
30
30
31
- isFile : isPresent ( '[data-test -file-icon] ' ) ,
32
- isDirectory : isPresent ( '[data-test-directory-icon] ' ) ,
33
- isEmpty : isPresent ( '[data-test-empty-icon] ' ) ,
31
+ isFile : isPresent ( '.icon-is -file-outline ' ) ,
32
+ isDirectory : isPresent ( '.icon-is-folder-outline ' ) ,
33
+ isEmpty : isPresent ( '.icon-is-alert-circle-outline ' ) ,
34
34
35
35
size : text ( '[data-test-size]' ) ,
36
36
lastModified : text ( '[data-test-last-modified]' ) ,
You can’t perform that action at this time.
0 commit comments