File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -158,15 +158,6 @@ export default {
158158 // console.log(types_by_host);
159159
160160 _ .each (types_by_host , (types , hostname ) => {
161- if (hostname != ' unknown' ) {
162- activityViews .push ({
163- name: hostname ,
164- hostname: hostname ,
165- type: ' default' ,
166- pathUrl: ` /activity/${hostname } ` ,
167- icon: ' desktop' ,
168- });
169- }
170161 if (types [' android' ]) {
171162 activityViews .push ({
172163 name: ` ${hostname } (Android) ` ,
@@ -175,6 +166,14 @@ export default {
175166 pathUrl: ` /activity/${hostname } ` ,
176167 icon: ' mobile' ,
177168 });
169+ } else if (hostname != ' unknown' ) {
170+ activityViews .push ({
171+ name: hostname ,
172+ hostname: hostname ,
173+ type: ' default' ,
174+ pathUrl: ` /activity/${hostname } ` ,
175+ icon: ' desktop' ,
176+ });
178177 }
179178 });
180179
You can’t perform that action at this time.
0 commit comments