projects
/
web
/
firmware-selector-openwrt-org.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d68124d
)
add missing spaces in constructed title
author
Moritz Warning
<moritzwarning@web.de>
Mon, 6 Apr 2020 14:03:56 +0000
(16:03 +0200)
committer
Moritz Warning
<moritzwarning@web.de>
Mon, 6 Apr 2020 14:03:56 +0000
(16:03 +0200)
index.js
patch
|
blob
|
history
diff --git
a/index.js
b/index.js
index eb0a4695aa04dde3172988b17c6c8d9b50dc0457..09631dc2c30d4e8a8263a0ca7e03757559bd133e 100644
(file)
--- a/
index.js
+++ b/
index.js
@@
-28,7
+28,7
@@
function build_asa_request() {
if (e.title) {
return e.title;
} else {
- return ((e.vendor || '') +
(e.model || '')
+ (e.variant || '')).trim();
+ return ((e.vendor || '') +
' ' + (e.model || '') + ' '
+ (e.variant || '')).trim();
}
}).join('/');
}