forked from projects/fipamo
fix for saving uploaded image url in pages, type tweak for dashboard
This commit is contained in:
parent
62b9744040
commit
92a5169949
2 changed files with 10 additions and 4 deletions
|
@ -134,12 +134,18 @@ router.post('/write/:task?', feature_upload, (req, res) => {
|
|||
: (task = DataEvent.API_PAGE_WRITE);
|
||||
if (req.files.length > 0) {
|
||||
var path = req.files[0].path;
|
||||
//console.log('NEW FEATURE URL', path);
|
||||
feature = '/' + path.substring(7, path.length);
|
||||
} else {
|
||||
var url = body.feature_image;
|
||||
url != null || url != undefined || url != ''
|
||||
? (feature = url.substring(21, url.length))
|
||||
: (feature = '');
|
||||
//switch this to the new feature path edit
|
||||
if (url != null || url != undefined || url != '') {
|
||||
let chunks = url.split('/');
|
||||
let strip = chunks[0] + '/' + chunks[1] + chunks[2];
|
||||
feature = url.substr(strip.length + 1, url.length);
|
||||
} else {
|
||||
feature = '';
|
||||
}
|
||||
}
|
||||
body.feature = feature;
|
||||
body.deleted = false;
|
||||
|
|
|
@ -100,7 +100,7 @@
|
|||
url('fonts/Apercu-Mono.svg?#Apercu') format('svg')
|
||||
|
||||
$baseType = Helvetica, Arial, sans-serif;
|
||||
$monoType = 'Andale Mono'
|
||||
$monoType = monospace, courier
|
||||
|
||||
h1, h2, h3
|
||||
color $white
|
||||
|
|
Loading…
Reference in a new issue